1
0

SelfTests: Moved SchematicFileSerializer test into a separate project.

This commit is contained in:
Mattes D
2016-03-13 19:13:17 +01:00
parent db17f585af
commit a781be5456
5 changed files with 330 additions and 36 deletions

View File

@@ -0,0 +1,43 @@
// SchematicFileSerializerTest.cpp
// Implements the SchematicFileSerializer test main entrypoint
#include "Globals.h"
#include "WorldStorage/SchematicFileSerializer.h"
static void DoTest(void)
{
cBlockArea ba;
ba.Create(21, 256, 21);
ba.RelLine(0, 0, 0, 9, 8, 7, cBlockArea::baTypes | cBlockArea::baMetas, E_BLOCK_WOODEN_STAIRS, 1);
AString Schematic;
if (!cSchematicFileSerializer::SaveToSchematicString(ba, Schematic))
{
assert_test(!"Schematic failed to save!");
}
cBlockArea ba2;
if (!cSchematicFileSerializer::LoadFromSchematicString(ba2, Schematic))
{
assert_test(!"Schematic failed to load!");
}
}
int main(int argc, char * argv[])
{
DoTest();
LOG("SchematicFileSerializer test done.");
return 0;
}