Remove redundant type trait tests

This commit is contained in:
Chris Thrasher 2023-07-16 21:51:46 -06:00
parent ac2e4d49cf
commit cb4cf4d090

View File

@ -14,9 +14,7 @@ TEST_CASE("[Graphics] sf::Texture", runDisplayTests())
{
STATIC_CHECK(std::is_copy_constructible_v<sf::Texture>);
STATIC_CHECK(std::is_copy_assignable_v<sf::Texture>);
STATIC_CHECK(std::is_move_constructible_v<sf::Texture>);
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::Texture>);
STATIC_CHECK(std::is_move_assignable_v<sf::Texture>);
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::Texture>);
STATIC_CHECK(std::is_nothrow_swappable_v<sf::Texture>);
}