| 55 | } // namespace |
| 56 | |
| 57 | TEST(OpTest, VersionIsNotEmpty) { |
| 58 | op::Op op; |
| 59 | wstring ver = op.Ver(); |
| 60 | EXPECT_FALSE(ver.empty()) << "Version string should not be empty"; |
| 61 | wcout << L"Version: " << ver << endl; |
| 62 | } |
| 63 | |
| 64 | TEST(OpTest, GetBasePath) { |
| 65 | op::Op op; |
nothing calls this directly
no test coverage detected