| 63 | char m_aData[IO_MAX_PATH_LENGTH]; |
| 64 | |
| 65 | bool operator<(const CTestInfoPath &Other) const |
| 66 | { |
| 67 | if(m_IsDirectory != Other.m_IsDirectory) |
| 68 | { |
| 69 | return m_IsDirectory < Other.m_IsDirectory; |
| 70 | } |
| 71 | return str_comp(m_aData, Other.m_aData) > 0; |
| 72 | } |
| 73 | }; |
| 74 | |
| 75 | class CTestCollectData |
nothing calls this directly
no test coverage detected