SDOM - Simple SDL Document Object Model
A lightweight, extensible Document Object Model for SDL-based applications.
Loading...
Searching...
No Matches
SDOM_IUnitTest.hpp
Go to the documentation of this file.
1
// SDOM_IUnitTest.hpp
2
#pragma once
3
// #include <SDOM/SDOM.hpp>
4
5
namespace
SDOM
6
{
7
30
class
IUnitTest
31
{
32
public
:
37
virtual
bool
onUnitTest
() = 0;
38
39
// Optionally add logging/display methods here
40
// ...
41
42
};
43
44
}
// namespace SDOM
SDOM::IUnitTest
Interface for unit testing objects in SDOM.
Definition
SDOM_IUnitTest.hpp:31
SDOM::IUnitTest::onUnitTest
virtual bool onUnitTest()=0
Runs unit tests for this object.
SDOM
Contains all core classes and utilities for the SDOM library.
Definition
lua_BindHelpers.hpp:7