Initial commit
This commit is contained in:
25
ZTestSuite/Test-ZJSONWriter.cpp
Normal file
25
ZTestSuite/Test-ZJSONWriter.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#include "ZUnitTest.hpp"
|
||||
|
||||
#include <ZUtil/ZJSONWriter.hpp>
|
||||
|
||||
static const char* test_LoadSuccess();
|
||||
static const char* test_LoadFailed();
|
||||
|
||||
ZUnitTest ZJSONWriterUnitTests[] =
|
||||
{
|
||||
{ "ZJSONWriter: Successful Load", test_LoadSuccess },
|
||||
{ "ZJSONWriter: Failed Load", test_LoadFailed }
|
||||
};
|
||||
|
||||
//Now declare the ZUnitTestBlock associated with this.
|
||||
DECLARE_ZTESTBLOCK(ZJSONWriter);
|
||||
|
||||
static const char* test_LoadSuccess()
|
||||
{
|
||||
return "TODO";
|
||||
}
|
||||
|
||||
static const char* test_LoadFailed()
|
||||
{
|
||||
return "TODO";
|
||||
}
|
||||
Reference in New Issue
Block a user