Files
Project_CTR/ctrtool/deps/libtoolchain/test/io_StreamSource_TestClass.h
2022-03-12 16:00:33 +08:00

17 lines
376 B
C++

#pragma once
#include "ITestClass.h"
class io_StreamSource_TestClass : public ITestClass
{
public:
void runAllTests();
private:
void testDefaultConstructor();
void testCreateConstructor();
void testCreateFromStreamWithoutSeek();
void testCreateFromStreamWithoutRead();
void testCreateFromStreamWithoutWrite();
void testNegativeOffset();
void testTooLargeOffset();
};