#include // Other 1st party headers #include #include #include #include #include static_assert(!std::is_copy_constructible_v); static_assert(!std::is_copy_assignable_v); static_assert(!std::is_nothrow_move_constructible_v); static_assert(!std::is_nothrow_move_assignable_v); TEST_CASE("[Window] sf::Window" * doctest::skip(skipDisplayTests)) { SUBCASE("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)); } }