13 lines
207 B
C++
Executable File
13 lines
207 B
C++
Executable File
#pragma once
|
|
#include "test.hpp"
|
|
|
|
struct CkdIntTest : public Test
|
|
{
|
|
CkdIntTest(const std::string& nm) : Test(nm) {};
|
|
void run() override;
|
|
|
|
private:
|
|
void test_ckd();
|
|
void test_ckd_uint();
|
|
};
|