17 lines
293 B
C++
17 lines
293 B
C++
#include <fmt/core.h>
|
|
#include <fuc2/testing.hpp>
|
|
|
|
using namespace fuc2;
|
|
|
|
namespace camera_tests {
|
|
void test_view_based_camera_system() {
|
|
CHECK(1 == 1);
|
|
}
|
|
|
|
fuc2::Set TESTS{
|
|
.name="camera tests (EMPTY!)",
|
|
.tests={
|
|
TEST(test_view_based_camera_system),
|
|
}
|
|
};
|
|
}
|