mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
16 lines
367 B
C++
16 lines
367 B
C++
#pragma once
|
|
#include "ITestClass.h"
|
|
|
|
#include <tc/bn.h>
|
|
#include <tc/ArgumentOutOfRangeException.h>
|
|
#include <tc/NotImplementedException.h>
|
|
|
|
class bn_string_TestClass : public ITestClass
|
|
{
|
|
public:
|
|
void runAllTests();
|
|
private:
|
|
void test_EncodedSizeVersusLogicalSize();
|
|
void test_StringSizeNeverExceedsLogicalSize();
|
|
void test_EncodeStringRespectsLogicalSize();
|
|
}; |