basedOpinionated utility library |
git clone git://git.dimitrijedobrota.com/based.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |
array_test.cpp (355B)
0 #include "based/container/array.hpp"
2 #include <catch2/catch_test_macros.hpp>
4 #include "based/integral/literals.hpp"
6 using namespace based::literals; // NOLINT(*namespace*)
8 template class based::Array<based::U16, based::U8, 0_u8>;
9 template class based::Array<based::U16, based::U8, 1_u8>;
11 TEST_CASE("Array", "[container/Array]")
12 {
13 REQUIRE(true);
14 }