- More Documentation
This commit is contained in:
@@ -11,6 +11,7 @@ add_executable(fennec-test
|
||||
tests/test_threading.h
|
||||
tests/test_core.h
|
||||
tests/core/test_event.h
|
||||
tests/core/test_version.h
|
||||
)
|
||||
|
||||
target_compile_definitions(fennec-test PUBLIC FENNEC_TEST_CWD="${CMAKE_SOURCE_DIR}/bin/${FENNEC_BUILD_NAME}"
|
||||
|
||||
52
test/tests/core/test_version.h
Normal file
52
test/tests/core/test_version.h
Normal file
@@ -0,0 +1,52 @@
|
||||
// =====================================================================================================================
|
||||
// fennec, a free and open source game engine
|
||||
// Copyright © 2025 Medusa Slockbower
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
// =====================================================================================================================
|
||||
|
||||
|
||||
#ifndef FENNEC_TEST_CORE_VERSION_H
|
||||
#define FENNEC_TEST_CORE_VERSION_H
|
||||
|
||||
#include <fennec/core/version.h>
|
||||
|
||||
#include "../../test.h"
|
||||
|
||||
namespace fennec::test
|
||||
{
|
||||
|
||||
inline void fennec_test_core_version() {
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) == (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), true);
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) == (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), false);
|
||||
|
||||
fennec_test_spacer(1);
|
||||
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) != (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), false);
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) != (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), true);
|
||||
|
||||
fennec_test_spacer(1);
|
||||
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) < (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), false);
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) < (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), true);
|
||||
|
||||
fennec_test_spacer(1);
|
||||
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) > (version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }), false);
|
||||
fennec_test_run((version{ .major = 1, .minor = 0, .patch = 0, .meta = 0 }) > (version{ .major = 1, .minor = 0, .patch = 1, .meta = 0 }), false);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif // FENNEC_TEST_CORE_VERSION_H
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef FENNEC_TEST_MATRIX_H
|
||||
#define FENNEC_TEST_MATRIX_H
|
||||
|
||||
#include <fennec/math/detail/_fwd.h>
|
||||
#include <fennec/math/detail/_forward.h>
|
||||
|
||||
#include <fennec/math/matrix.h>
|
||||
|
||||
|
||||
@@ -20,18 +20,22 @@
|
||||
#define FENNEC_TEST_CORE_H
|
||||
|
||||
#include "../test.h"
|
||||
|
||||
#include "core/test_event.h"
|
||||
#include "core/test_version.h"
|
||||
|
||||
namespace fennec::test
|
||||
{
|
||||
|
||||
inline void fennec_test_core() {
|
||||
fennec_test_subheader("events");
|
||||
fennec_test_spacer(2);
|
||||
fennec_test_core_event();
|
||||
fennec_test_spacer(3);
|
||||
|
||||
fennec_test_subheader("version");
|
||||
fennec_test_spacer(2);
|
||||
fennec_test_core_version();
|
||||
fennec_test_spacer(3);
|
||||
|
||||
fennec_test_subheader("events");
|
||||
fennec_test_spacer(2);
|
||||
fennec_test_core_event();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -33,10 +33,10 @@ namespace fennec::test
|
||||
|
||||
fennec_test_spacer(1);
|
||||
|
||||
fennec_test_run(path::current(), path(FENNEC_TEST_CWD));
|
||||
fennec_test_run(path::get_current(), path(FENNEC_TEST_CWD));
|
||||
fennec_test_run(path("../" FENNEC_BUILD_NAME "/./test.sh").absolute(), path(FENNEC_TEST_CWD) / "test.sh");
|
||||
fennec_test_run(path("./test/../test.sh").absolute(), path(FENNEC_TEST_CWD) / "test.sh");
|
||||
fennec_test_run(path::current().parent(), path("../").absolute());
|
||||
fennec_test_run(path::get_current().parent(), path("../").absolute());
|
||||
|
||||
fennec_test_spacer(2);
|
||||
|
||||
|
||||
@@ -51,8 +51,8 @@ inline void fennec_test_platform() {
|
||||
|
||||
|
||||
while (wm.is_running(window)) {
|
||||
wm.begin(window);
|
||||
wm.end(window);
|
||||
wm.begin_frame(window);
|
||||
wm.end_frame(window);
|
||||
|
||||
wm.dispatch();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user