mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-22 02:06:03 +08:00
22 lines
484 B
C++
Executable File
22 lines
484 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
|
|
}
|