summaryrefslogtreecommitdiff
path: root/graphicus-01.cpp
blob: b544cc8fd080a23d015f7c64fd0ef9fa99a23fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/********
 * Fichier: graphicus-01.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;
}