Directory: | ./ |
---|---|
File: | TESTS/TEST_HEADER_GENERATOR/main.cpp |
Date: | 2025-04-25 19:10:50 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 7 | 7 | 100.0% |
Branches: | 8 | 8 | 100.0% |
Line | Branch | Exec | Source |
---|---|---|---|
1 | /*************************************** | ||
2 | Auteur : Pierre Aubert | ||
3 | Mail : pierre.aubert@lapp.in2p3.fr | ||
4 | Licence : CeCILL-C | ||
5 | ****************************************/ | ||
6 | |||
7 | |||
8 | #include <iostream> | ||
9 | #include "header_generator.h" | ||
10 | |||
11 | ///Test the header generator | ||
12 | 1 | void testHeaderGenerator(){ | |
13 |
4/4✓ Branch 2 taken 1 times.
✓ Branch 5 taken 1 times.
✓ Branch 8 taken 1 times.
✓ Branch 11 taken 1 times.
|
1 | saveHeaderSourceFile(PPath(""), PPath("")); |
14 |
4/4✓ Branch 2 taken 1 times.
✓ Branch 5 taken 1 times.
✓ Branch 8 taken 1 times.
✓ Branch 11 taken 1 times.
|
1 | saveHeaderSourceFile(PPath("file.h"), PPath("file.cpp")); |
15 | 1 | } | |
16 | |||
17 | 1 | int main(int argc, char ** argv){ | |
18 | 1 | testHeaderGenerator(); | |
19 | 1 | return 0; | |
20 | } | ||
21 | |||
22 | |||
23 |