Restructured Test Folder

This commit is contained in:
2025-06-11 15:40:14 -04:00
parent 09bfef8099
commit b7e1b1ff62
15 changed files with 35 additions and 383 deletions

View File

@@ -5,10 +5,13 @@ set(CMAKE_CXX_STANDARD 26)
add_executable(fennec-test main.cpp
test.h
tests/test_vector.h
tests/test_matrix.h
tests/test_scalar.h
tests/test_geometric.h
tests/math/test_vector.h
tests/math/test_matrix.h
tests/math/test_scalar.h
tests/math/test_geometric.h
tests/test_memory.h
tests/test_math.h
tests/test_lang.h
)
target_link_libraries(fennec-test PRIVATE

View File

@@ -21,7 +21,7 @@
#include "tests/test_scalar.h"
#include "tests/test_vector.h"
#include "tests/test_geometric.h"
#include "tests/test_matrix.h"
#include "tests/math/test_matrix.h"
#include <fennec/memory/bits.h>

View File

@@ -23,7 +23,7 @@
#include <fennec/math/geometric.h>
#include <fennec/math/trigonometric.h>
#include "../test.h"
#include "../../test.h"
namespace fennec
{

View File

@@ -22,7 +22,7 @@
#include <fennec/math/vector_traits.h>
#include "../test.h"
#include "../../test.h"
namespace fennec
{

View File

@@ -25,7 +25,7 @@
#include <fennec/lang/types.h>
#include <fennec/math/vector.h>
#include "../test.h"
#include "../../test.h"
namespace fennec
{

8
test/tests/test_lang.h Normal file
View File

@@ -0,0 +1,8 @@
//
// Created by medusa on 6/8/25.
//
#ifndef TEST_LANG_H
#define TEST_LANG_H
#endif //TEST_LANG_H

8
test/tests/test_math.h Normal file
View File

@@ -0,0 +1,8 @@
//
// Created by medusa on 6/8/25.
//
#ifndef TEST_MATH_H
#define TEST_MATH_H
#endif //TEST_MATH_H

8
test/tests/test_memory.h Normal file
View File

@@ -0,0 +1,8 @@
//
// Created by medusa on 6/8/25.
//
#ifndef TEST_MEMORY_H
#define TEST_MEMORY_H
#endif //TEST_MEMORY_H