mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 08:49:03 +00:00
14 lines
289 B
C++
14 lines
289 B
C++
#pragma once
|
|
#include "ITestClass.h"
|
|
|
|
class crypto_PseudoRandomByteGenerator_TestClass : public ITestClass
|
|
{
|
|
public:
|
|
void runAllTests();
|
|
private:
|
|
void test_Class();
|
|
void test_UtilFunc();
|
|
|
|
void test_MultipleObjectsCreateDifferentData();
|
|
void test_RepeatedCallsCreateDifferentData();
|
|
}; |