Added install target

This commit is contained in:
2018-12-26 15:04:32 +01:00
parent cc0d44a01d
commit d4defbc9a7
3 changed files with 15 additions and 12 deletions

View File

@ -9,7 +9,7 @@ using namespace moFileLib;
TEST_CASE ("Load mo-file", "[ReadFile]")
{
CHECK (moFileReaderSingleton::GetInstance().ReadFile("test.mo") == moFileLib::moFileReader::EC_SUCCESS);
CHECK (moFileReaderSingleton::GetInstance ().ReadFile ("test.mo") == moFileLib::moFileReader::EC_SUCCESS);
}
TEST_CASE ("Lookup string", "[Lookup]")
@ -20,7 +20,7 @@ TEST_CASE ("Lookup string", "[Lookup]")
/* This is the second comment. */
CHECK ("Text Nederlands Twee" == _L ("String English Two"));
/* This is the third comment. */
CHECK ("Text Nederlands Drie" == _L ("String English Three"));
CHECK ("Text Nederlands Drie" == _L ("String English Three"));
}