mirror of
https://github.com/libretro/Play-.git
synced 2025-01-25 10:37:56 +00:00
13 lines
179 B
C
13 lines
179 B
C
|
#pragma once
|
||
|
|
||
|
#include "TestVm.h"
|
||
|
|
||
|
#define TEST_VERIFY(a) if(!(a)) { int* p = 0; (*p) = 0; }
|
||
|
|
||
|
class CTest
|
||
|
{
|
||
|
public:
|
||
|
virtual ~CTest() {}
|
||
|
virtual void Execute(CTestVm&) = 0;
|
||
|
};
|