Started to convert from catch2 to fuc2.
This commit is contained in:
parent
4deda37665
commit
b8b42d5681
10 changed files with 615 additions and 493 deletions
|
|
@ -1,6 +1,17 @@
|
|||
#include <catch2/catch_test_macros.hpp>
|
||||
#include <fmt/core.h>
|
||||
#include <fuc2/testing.hpp>
|
||||
|
||||
TEST_CASE("view based camera system", "[camera]") {
|
||||
REQUIRE(1 == 1);
|
||||
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),
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue