Files
Seele/test/Engine/EngineTest.h
T

22 lines
347 B
C++
Raw Normal View History

2021-03-31 12:18:16 +02:00
#pragma once
namespace Seele
{
struct GlobalFixture
{
GlobalFixture()
{
}
~GlobalFixture()
{
}
void setup()
{
2021-04-01 16:40:14 +02:00
//Fibers::JobQueue::initJobQueues();
2021-03-31 12:18:16 +02:00
}
void teardown()
{
2021-04-01 16:40:14 +02:00
//Fibers::JobQueue::cleanupJobQueues();
2021-03-31 12:18:16 +02:00
}
};
};