summaryrefslogtreecommitdiff
path: root/graphicus-02.cpp
blob: 800b39379005e93b9701c927798651d5443331be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/********
 * Fichier: graphicus-02.cpp
 * Auteurs: Benjamin Chausse - chab1704
 * Date: 15 janvier 2023 (modification)
 * 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_unitaires(); */
  tests.tests_application();

  return 0;
}