Skip to content

Commit

Permalink
Add tests for SFML/Config.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisThrasher authored and eXpl0it3r committed Aug 3, 2022
1 parent e691033 commit 49fd588
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ set_target_warnings(sfml-test-main)
SET(SYSTEM_SRC
System/Angle.cpp
System/Clock.cpp
System/Config.cpp
System/Err.cpp
System/FileInputStream.cpp
System/MemoryInputStream.cpp
Expand All @@ -32,6 +33,12 @@ SET(SYSTEM_SRC
System/Vector3.cpp
)
sfml_add_test(test-sfml-system "${SYSTEM_SRC}" SFML::System)
target_compile_definitions(test-sfml-system PRIVATE
EXPECTED_SFML_VERSION_MAJOR=${SFML_VERSION_MAJOR}
EXPECTED_SFML_VERSION_MINOR=${SFML_VERSION_MINOR}
EXPECTED_SFML_VERSION_PATCH=${SFML_VERSION_PATCH}
EXPECTED_SFML_VERSION_IS_RELEASE=$<IF:$<BOOL:${VERSION_IS_RELEASE}>,true,false>
)

SET(WINDOW_SRC
Window/ContextSettings.cpp
Expand Down
29 changes: 29 additions & 0 deletions test/System/Config.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#include <SFML/Config.hpp>

#include <doctest/doctest.h>

TEST_CASE("SFML/Config.hpp")
{
SUBCASE("Version macros")
{
CHECK(SFML_VERSION_MAJOR == EXPECTED_SFML_VERSION_MAJOR);
CHECK(SFML_VERSION_MINOR == EXPECTED_SFML_VERSION_MINOR);
CHECK(SFML_VERSION_PATCH == EXPECTED_SFML_VERSION_PATCH);
CHECK(SFML_VERSION_IS_RELEASE == EXPECTED_SFML_VERSION_IS_RELEASE);
}

SUBCASE("Fixed width types")
{
CHECK(sizeof(sf::Int8) == 1);
CHECK(sizeof(sf::Uint8) == 1);

CHECK(sizeof(sf::Int16) == 2);
CHECK(sizeof(sf::Uint16) == 2);

CHECK(sizeof(sf::Int32) == 4);
CHECK(sizeof(sf::Uint32) == 4);

CHECK(sizeof(sf::Int64) == 8);
CHECK(sizeof(sf::Uint64) == 8);
}
}

0 comments on commit 49fd588

Please sign in to comment.