mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
14 lines
249 B
C++
14 lines
249 B
C++
#pragma once
|
|
#include "ITestClass.h"
|
|
|
|
class io_SubSource_TestClass : public ITestClass
|
|
{
|
|
public:
|
|
void runAllTests();
|
|
private:
|
|
void testDefaultConstructor();
|
|
void testCreateConstructor();
|
|
void testNegativeOffset();
|
|
void testTooLargeOffset();
|
|
};
|