| 236 | class ArrayArgumentTest { |
| 237 | public: |
| 238 | ArrayArgumentTest() : m_array("I should match the member variable"){}; |
| 239 | ~ArrayArgumentTest(){}; |
| 240 | bool byteArrayTest(const char* arg) { return strcmp(arg, m_array) == 0; } |
| 241 | bool domStringTest(const char* arg) { return strcmp(arg, m_array) == 0; } |
nothing calls this directly
no outgoing calls
no test coverage detected