forked from M-Labs/nac3
lyken
628965e519
progress details: - organize test suite sources with namespaces - organize ndarray implementations with namespaces - remove extraneous code/comment - add more tests - some renaming - fix pre-existing bugs - ndarray::subscript now throw errors
19 lines
320 B
C++
19 lines
320 B
C++
#pragma once
|
|
|
|
#include <test/core.hpp>
|
|
#include <irrt_everything.hpp>
|
|
|
|
namespace test {
|
|
namespace core {
|
|
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));
|
|
}
|
|
|
|
void run() {
|
|
test_int_exp();
|
|
}
|
|
}
|
|
} |