Files
Seele/test/Engine/EngineTest.h
T

20 lines
318 B
C++
Raw Normal View History

2021-03-31 12:18:16 +02:00
#pragma once
2022-03-28 21:18:57 +02:00
#include <vld.h>
2021-03-31 12:18:16 +02:00
namespace Seele
{
struct GlobalFixture
{
GlobalFixture()
{
2022-03-28 21:18:57 +02:00
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
2021-03-31 12:18:16 +02:00
}
2022-03-26 12:55:04 +01:00
~GlobalFixture();
2021-03-31 12:18:16 +02:00
void setup()
{
}
void teardown()
{
}
};
};