forked from M-Labs/nac3
11 lines
238 B
C++
11 lines
238 B
C++
|
#pragma once
|
||
|
|
||
|
#include "core.hpp"
|
||
|
#include "../irrt/core.hpp"
|
||
|
|
||
|
void test_int_exp() {
|
||
|
BEGIN_TEST();
|
||
|
|
||
|
assert_values_match(125, __nac3_int_exp_impl<int32_t>(5, 3));
|
||
|
assert_values_match(3125, __nac3_int_exp_impl<int32_t>(5, 5));
|
||
|
}
|