mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 23:03:56 -07:00
17 lines
335 B
C
17 lines
335 B
C
|
|
#include "lib/self_test.h"
|
||
|
|
|
||
|
|
// usually defined by main.cpp, used by engine's scripting/ScriptGlue.cpp,
|
||
|
|
// must be included here to placate linker.
|
||
|
|
void kill_mainloop()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
// just so that cxxtestgen doesn't complain "No tests defined"
|
||
|
|
class TestDummy : public CxxTest::TestSuite
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
void test_dummy()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
};
|