20 lines
338 B
C++
20 lines
338 B
C++
#include <fmt/core.h>
|
|
#include "guecs/ui.hpp"
|
|
#include <fmt/xchar.h>
|
|
#include <fuc2/testing.hpp>
|
|
|
|
using namespace guecs;
|
|
using namespace fuc2;
|
|
|
|
namespace guecs_tests {
|
|
void test_prototype() {
|
|
// accidentally gutted, will recover later
|
|
}
|
|
|
|
fuc2::Set TESTS{
|
|
.name="guecs",
|
|
.tests={
|
|
TEST(test_prototype),
|
|
}
|
|
};
|
|
}
|