| 33 | }; |
| 34 | |
| 35 | TEST(TestFilter, emptyFilterMatchesEverything) |
| 36 | { |
| 37 | TestFilter filter; |
| 38 | CHECK(filter.match("random_name")); |
| 39 | CHECK(filter.match("")); |
| 40 | CHECK(filter.match("*&%#^&%$(*&^@#(&*@#^(&*$^@#")); |
| 41 | } |
| 42 | |
| 43 | TEST(TestFilter, defaultAbsoluteMismatches) |
| 44 | { |
nothing calls this directly
no test coverage detected