Directory: | ./ |
---|---|
File: | tmp_project/PhoenixString/TESTS/TEST_FILESIZE/main.cpp |
Date: | 2024-07-27 10:53:27 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 8 | 8 | 100.0% |
Branches: | 12 | 12 | 100.0% |
Line | Branch | Exec | Source |
---|---|---|---|
1 | |||
2 | /*************************************** | ||
3 | Auteur : Pierre Aubert | ||
4 | Mail : pierre.aubert@lapp.in2p3.fr | ||
5 | Licence : CeCILL-C | ||
6 | ****************************************/ | ||
7 | |||
8 | #include <iostream> | ||
9 | #include "phoenix_assert.h" | ||
10 | #include "phoenix_getFileSize.h" | ||
11 | |||
12 | ///Test the whoami function | ||
13 | 1 | void testStringFileSize(){ | |
14 |
2/2✓ Branch 2 taken 1 times.
✓ Branch 5 taken 1 times.
|
1 | size_t fileSize(phoenix_getFileSize("Makefile")); |
15 |
4/4✓ Branch 2 taken 1 times.
✓ Branch 6 taken 1 times.
✓ Branch 10 taken 1 times.
✓ Branch 13 taken 1 times.
|
1 | phoenix_assert(fileSize != 0lu); |
16 |
6/6✓ Branch 2 taken 1 times.
✓ Branch 6 taken 1 times.
✓ Branch 10 taken 1 times.
✓ Branch 14 taken 1 times.
✓ Branch 17 taken 1 times.
✓ Branch 20 taken 1 times.
|
1 | phoenix_assert(phoenix_getFileSize("UnexistingFile.txt") == 0lu); |
17 | 1 | } | |
18 | |||
19 | |||
20 | 1 | int main(int argc, char** argv){ | |
21 | 1 | testStringFileSize(); | |
22 | 1 | return 0; | |
23 | } | ||
24 | |||
25 | |||
26 |