-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.h
47 lines (37 loc) · 798 Bytes
/
test.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef TEST_H_INCLUDED
#define TEST_H_INCLUDED
#include "jeu1vs1.h"
#include "jeu1vsordi.h"
/**
* Programme pilote pour tester les fonctions du jeu
**/
int TestGameFunctions();
/**
* Programme pilote pour tester initialiserPlateauJeu()
**/
int testInitialiserPlateauJeu();
/**
* Programme pilote pour tester initialiserCoup()
**/
int testInitialiserCoup();
/**
* Programme pilote pour tester copyPlateau()
**/
int testCopyPlateau();
/**
* Programme pilote pour tester jouerCoup()
**/
int testJouerCoup();
/**
* Programme pilote pour tester coupPossible()
**/
int testCoupPossible();
/**
* Programme pilote pour tester coupGagnant()
**/
int testCoupGagnant();
/**
* Programme pilote pour tester coupAi()
**/
int testCoupAi();
#endif