mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
15 lines
208 B
C++
15 lines
208 B
C++
#pragma once
|
|
|
|
#define TEST_VERIFY(a) \
|
|
if(!(a)) \
|
|
{ \
|
|
int* p = 0; \
|
|
(*p) = 0; \
|
|
}
|
|
|
|
class CTest
|
|
{
|
|
public:
|
|
virtual ~CTest() = default;
|
|
virtual void Execute() = 0;
|
|
};
|