🎨 Convert to a header-only library (#6)

This commit is contained in:
2021-01-12 16:19:25 +01:00
committed by GitHub
parent f7fe31739e
commit c7b0151510
19 changed files with 1090 additions and 1404 deletions

View File

@ -1,36 +1,35 @@
#define CATCH_CONFIG_MAIN
#include "moFileReader.h"
#include "catch.hpp"
#include "moFileReader.hpp"
using namespace moFileLib;
#define _L(str) moFileReaderSingleton::GetInstance().Lookup(str)
#define _LC(ctx,str) moFileReaderSingleton::GetInstance().LookupWithContext(ctx,str)
#define _LC(ctx, str) moFileReaderSingleton::GetInstance().LookupWithContext(ctx, str)
TEST_CASE ("Load mo-file", "[ReadFile]")
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]")
TEST_CASE("Lookup string", "[Lookup]")
{
moFileReaderSingleton::GetInstance ().ReadFile ("test.mo");
moFileReaderSingleton::GetInstance().ReadFile("test.mo");
/* This is the first comment. */
CHECK ("Text Nederlands Een" == _L ("String English One"));
CHECK("Text Nederlands Een" == _L("String English One"));
/* This is the second comment. */
CHECK ("Text Nederlands Twee" == _L ("String English Two"));
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"));
}
TEST_CASE ("Lookup string with context", "[LookupWithContext]")
TEST_CASE("Lookup string with context", "[LookupWithContext]")
{
moFileReaderSingleton::GetInstance ().ReadFile ("test.mo");
moFileReaderSingleton::GetInstance().ReadFile("test.mo");
/* This is the first comment. */
CHECK ("Text Nederlands Een" == _LC ("TEST|String|1", "String English"));
CHECK("Text Nederlands Een" == _LC("TEST|String|1", "String English"));
/* This is the second comment. */
CHECK ("Text Nederlands Twee" == _LC ("TEST|String|2", "String English"));
CHECK("Text Nederlands Twee" == _LC("TEST|String|2", "String English"));
/* This is the third comment. */
CHECK ("Text Nederlands Drie" == _LC ("TEST|String|3", "String English"));
CHECK("Text Nederlands Drie" == _LC("TEST|String|3", "String English"));
}