mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 16:59:04 +00:00
18 lines
385 B
C++
18 lines
385 B
C++
#pragma once
|
|
#include "ITestClass.h"
|
|
|
|
#include <tc/io/MemorySource.h>
|
|
|
|
class io_MemorySource_TestClass : public ITestClass
|
|
{
|
|
public:
|
|
void runAllTests();
|
|
private:
|
|
void testDefaultConstructor();
|
|
void testInitializeByCopyWithByteData();
|
|
void testInitializeByMoveWithByteData();
|
|
void testInitializeByCopyWithMemoryPointer();
|
|
void testNegativeOffset();
|
|
void testTooLargeOffset();
|
|
};
|