| 7 | namespace UnitTests |
| 8 | { |
| 9 | TEST_CLASS(UnitTests) |
| 10 | { |
| 11 | public: |
| 12 | TEST_METHOD(TestStrA) { |
| 13 | std::string str = "Hello"; |
| 14 | wchar_t* wstr = string2wcharAlloc(str); |
| 15 | Assert::AreEqual(L"Hello", wstr); |
| 16 | } |
| 17 | |
| 18 | |
| 19 | TEST_METHOD(TestTranslate) |
nothing calls this directly
no test coverage detected