mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
44 lines
1.7 KiB
C++
44 lines
1.7 KiB
C++
#include <SFML/Window/ContextSettings.hpp>
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
#include <type_traits>
|
|
|
|
TEST_CASE("[Window] sf::ContextSettings")
|
|
{
|
|
SECTION("Type traits")
|
|
{
|
|
STATIC_CHECK(std::is_copy_constructible_v<sf::ContextSettings>);
|
|
STATIC_CHECK(std::is_copy_assignable_v<sf::ContextSettings>);
|
|
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::ContextSettings>);
|
|
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::ContextSettings>);
|
|
}
|
|
|
|
SECTION("Construction")
|
|
{
|
|
SECTION("Aggregate initialization -- Nothing")
|
|
{
|
|
constexpr sf::ContextSettings contextSettings;
|
|
STATIC_CHECK(contextSettings.depthBits == 0);
|
|
STATIC_CHECK(contextSettings.stencilBits == 0);
|
|
STATIC_CHECK(contextSettings.antiAliasingLevel == 0);
|
|
STATIC_CHECK(contextSettings.majorVersion == 1);
|
|
STATIC_CHECK(contextSettings.minorVersion == 1);
|
|
STATIC_CHECK(contextSettings.attributeFlags == sf::ContextSettings::Default);
|
|
STATIC_CHECK(contextSettings.sRgbCapable == false);
|
|
}
|
|
|
|
SECTION("Aggregate initialization -- Everything")
|
|
{
|
|
constexpr sf::ContextSettings contextSettings{1, 1, 2, 3, 5, sf::ContextSettings::Core, true};
|
|
STATIC_CHECK(contextSettings.depthBits == 1);
|
|
STATIC_CHECK(contextSettings.stencilBits == 1);
|
|
STATIC_CHECK(contextSettings.antiAliasingLevel == 2);
|
|
STATIC_CHECK(contextSettings.majorVersion == 3);
|
|
STATIC_CHECK(contextSettings.minorVersion == 5);
|
|
STATIC_CHECK(contextSettings.attributeFlags == sf::ContextSettings::Core);
|
|
STATIC_CHECK(contextSettings.sRgbCapable == true);
|
|
}
|
|
}
|
|
}
|