diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 19:37:56 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 19:37:56 -0500 |
commit | 6a20ac2049d7e9fbf827838259911bf0899f46d9 (patch) | |
tree | 4b96dfc05bbd03da1d80bd2369b339dac5041c10 /graphicus-02.cpp | |
parent | bd3b390064aa8dee26845dc6fcc1b5d79773a167 (diff) | |
parent | 86fbed0811fc4ef36ffb66b3f774df61eb87c24b (diff) |
Fix gitignore merge
Diffstat (limited to 'graphicus-02.cpp')
-rw-r--r-- | graphicus-02.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphicus-02.cpp b/graphicus-02.cpp new file mode 100644 index 0000000..d42dd8f --- /dev/null +++ b/graphicus-02.cpp @@ -0,0 +1,20 @@ +/******** + * 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_unitaires(); */ + tests.tests_application_cas_01(); + + return 0; +} + |