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