SFML/test/Window/Window.test.cpp

29 lines
859 B
C++
Raw Normal View History

#include <SFML/Window/Window.hpp>
// Other 1st party headers
#include <SFML/Window/VideoMode.hpp>
2023-04-24 20:13:52 +08:00
#include <SFML/System/String.hpp>
#include <doctest/doctest.h>
#include <WindowUtil.hpp>
#include <type_traits>
static_assert(!std::is_copy_constructible_v<sf::Window>);
static_assert(!std::is_copy_assignable_v<sf::Window>);
static_assert(!std::is_nothrow_move_constructible_v<sf::Window>);
static_assert(!std::is_nothrow_move_assignable_v<sf::Window>);
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));
}
}