mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 09:46:02 +08:00
27 lines
490 B
C++
Executable File
27 lines
490 B
C++
Executable File
#include "CPP_InterfaceTestFixture.h"
|
|
|
|
CPP_InterfaceTestFixture::~CPP_InterfaceTestFixture()
|
|
{
|
|
finalize();
|
|
}
|
|
|
|
void CPP_InterfaceTestFixture::initialize()
|
|
{
|
|
// on a Per- Fixture Basis, before Test execution
|
|
}
|
|
|
|
void CPP_InterfaceTestFixture::finalize()
|
|
{
|
|
// on a Per- Fixture Basis, after all tests pass/fail
|
|
}
|
|
|
|
void CPP_InterfaceTestFixture::setUp()
|
|
{
|
|
// Setup on Per-Test Basis
|
|
}
|
|
|
|
void CPP_InterfaceTestFixture::tearDown()
|
|
{
|
|
// Tear Down on Per-Test Basis
|
|
}
|