blob: b01b3a91455818267873149e6a6feb440bf4f787 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/********
* Fichier: graphicus-02.cpp
* Auteurs: C.-A. Brunet
* Date: 08 janvier 2018 (creation)
* Description: gestionnaire de tests pour l'application Graphicus. Ce
* fichier fait partie de la distribution de Graphicus.
********/
#include "tests.h"
using namespace std;
int main() {
Tests tests;
tests.tests_application();
return 0;
}
|