| 88 | } |
| 89 | |
| 90 | SimpleString TestFilter::asString() const |
| 91 | { |
| 92 | SimpleString textFilter = StringFromFormat("TestFilter: \"%s\"", filter_.asCharString()); |
| 93 | if (strictMatching_ && invertMatching_) |
| 94 | textFilter += " with strict, invert matching"; |
| 95 | else if (strictMatching_) |
| 96 | textFilter += " with strict matching"; |
| 97 | else if (invertMatching_) |
| 98 | textFilter += " with invert matching"; |
| 99 | |
| 100 | return textFilter; |
| 101 | } |
| 102 | |
| 103 | SimpleString StringFrom(const TestFilter& filter) |
| 104 | { |
no test coverage detected