stuff-from-scratch/test/test_utils/TestCase.h

14 lines
241 B
C
Raw Normal View History

2021-05-23 20:02:38 +00:00
#pragma once
#include <memory>
class TestCase
{
public:
TestCase(){};
virtual ~TestCase() = default;
TestCase(const TestCase&) = delete;
virtual bool Run() {return false;};
};
using TestCasePtr = std::unique_ptr<TestCase>;