18 lines
271 B
C++
18 lines
271 B
C++
#include <fmt/core.h>
|
|
#include <string>
|
|
#include <fuc2/testing.hpp>
|
|
|
|
using namespace fuc2;
|
|
|
|
namespace base_tests {
|
|
void test_base_test() {
|
|
CHECK(1 == 1);
|
|
}
|
|
|
|
fuc2::Set TESTS{
|
|
.name="base template",
|
|
.tests={
|
|
TEST(test_base_test),
|
|
}
|
|
};
|
|
}
|