12 lines
199 B
C++
12 lines
199 B
C++
|
//
|
||
|
// Created by nb on 31.12.23.
|
||
|
//
|
||
|
|
||
|
#define CATCH_CONFIG_MAIN
|
||
|
#include <catch2/catch.hpp>
|
||
|
#include <Geometry/dummy.hpp>
|
||
|
|
||
|
TEST_CASE("Test Check","[main]") {
|
||
|
eigenExample();
|
||
|
REQUIRE( true );
|
||
|
}
|