Skip to content
Snippets Groups Projects
test_partie.c 328 B
Newer Older
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>

#include "test_partie.h"
void test_getNbTour(void **state) {
    Partie p;
	p.nbTours = 4;
    // Test 1
	assert_int_equal(p.nbTours, getNbTour(&p));
	// Test 2
	assert_int_equal(-1, getNbTour(NULL));