mirror of
https://github.com/libretro/Play-.git
synced 2025-01-10 10:31:05 +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;
|
|
};
|