#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("[Graphics] sf::Glyph") { SUBCASE("Construction") { const sf::Glyph glyph; CHECK(glyph.advance == 0.f); CHECK(glyph.lsbDelta == 0); CHECK(glyph.rsbDelta == 0); CHECK(glyph.bounds == sf::FloatRect()); CHECK(glyph.textureRect == sf::IntRect()); } }