GCC Code Coverage Report | |||||||||||||||||||||
|
|||||||||||||||||||||
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 "string_system.h" |
||
11 |
|||
12 |
///Test the is lower/upper case |
||
13 |
1 |
void testRegExpr(){ |
|
14 |
✓✓✓✓ ✓✓✓ |
1 |
phoenix_assert(!isStringMatchRegex("", "")); |
15 |
✓✓✓✓ ✓✓✓ |
1 |
phoenix_assert(isStringMatchRegex("agoihoicffEZEFjffz", "[:alpha:]")); |
16 |
✓✓✓✓ ✓✓✓ |
1 |
phoenix_assert(isStringMatchRegex("1092095235", "[0-9]")); |
17 |
✓✓✓✓ ✓✓✓ |
1 |
phoenix_assert(isStringMatchRegex("fjafzaofazofjaz", "[a-z]")); |
18 |
✓✓✓✓ ✓✓✓ |
1 |
phoenix_assert(isStringMatchRegex("EOJZEPFJGOEPGJPS", "[A-Z]")); |
19 |
✓✓✓✓ ✓✓✓ |
1 |
phoenix_assert(!isStringMatchRegex("1092095235", "[a-z]")); |
20 |
1 |
} |
|
21 |
|||
22 |
1 |
int main(int argc, char** argv){ |
|
23 |
1 |
testRegExpr(); |
|
24 |
1 |
return 0; |
|
25 |
} |
||
26 |
|||
27 |
Generated by: GCOVR (Version 4.2) |