mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 17:56:04 +08:00
30 lines
803 B
C++
Executable File
30 lines
803 B
C++
Executable File
#pragma once
|
|
#include "MiniCppUnit.hxx"
|
|
|
|
class CPP_InterfaceTestFixture : public TestFixture < CPP_InterfaceTestFixture >
|
|
{
|
|
public:
|
|
TEST_FIXTURE(CPP_InterfaceTestFixture){
|
|
//TEST_CASE(parseJSON);
|
|
|
|
initialize();
|
|
}
|
|
|
|
virtual ~CPP_InterfaceTestFixture();
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Test Cases
|
|
//////////////////////////////////////////////////////////////////////////
|
|
public:
|
|
// void parseJSON();
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// test fixture setup
|
|
//////////////////////////////////////////////////////////////////////////
|
|
void initialize();
|
|
void finalize();
|
|
public:
|
|
virtual void setUp();
|
|
virtual void tearDown();
|
|
};
|
|
REGISTER_FIXTURE(CPP_InterfaceTestFixture); |