#include // Other 1st party headers #include #include #include #include #include TEST_CASE("[Window] sf::Window", runDisplayTests()) { SECTION("Type traits") { STATIC_CHECK(!std::is_copy_constructible_v); STATIC_CHECK(!std::is_copy_assignable_v); STATIC_CHECK(!std::is_nothrow_move_constructible_v); STATIC_CHECK(!std::is_nothrow_move_assignable_v); } SECTION("Construction") { const sf::Window window(sf::VideoMode(sf::Vector2u(256, 256), 32), "Window Title", sf::Style::Default, sf::ContextSettings()); CHECK(window.getSize() == sf::Vector2u(256, 256)); } }