2022-04-08 18:33:50 -06:00
|
|
|
#include <SFML/Graphics/RectangleShape.hpp>
|
|
|
|
|
2023-01-17 21:51:08 -07:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2022-04-08 18:33:50 -06:00
|
|
|
|
2022-07-04 11:20:58 -05:00
|
|
|
#include <SystemUtil.hpp>
|
2022-07-25 00:36:05 -06:00
|
|
|
#include <type_traits>
|
|
|
|
|
2022-07-04 23:51:18 -06:00
|
|
|
TEST_CASE("[Graphics] sf::RectangleShape")
|
2022-04-08 18:33:50 -06:00
|
|
|
{
|
2023-01-17 21:51:08 -07:00
|
|
|
SECTION("Type traits")
|
|
|
|
{
|
|
|
|
STATIC_CHECK(std::is_copy_constructible_v<sf::RectangleShape>);
|
|
|
|
STATIC_CHECK(std::is_copy_assignable_v<sf::RectangleShape>);
|
|
|
|
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::RectangleShape>);
|
|
|
|
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::RectangleShape>);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Default constructor")
|
2022-04-08 18:33:50 -06:00
|
|
|
{
|
|
|
|
const sf::RectangleShape rectangle;
|
|
|
|
CHECK(rectangle.getSize() == sf::Vector2f(0, 0));
|
|
|
|
CHECK(rectangle.getPointCount() == 4);
|
|
|
|
CHECK(rectangle.getPoint(0) == sf::Vector2f(0, 0));
|
|
|
|
CHECK(rectangle.getPoint(1) == sf::Vector2f(0, 0));
|
|
|
|
CHECK(rectangle.getPoint(2) == sf::Vector2f(0, 0));
|
|
|
|
CHECK(rectangle.getPoint(3) == sf::Vector2f(0, 0));
|
2023-04-24 09:25:44 +02:00
|
|
|
CHECK(rectangle.getGeometricCenter() == sf::Vector2f(0, 0));
|
2022-04-08 18:33:50 -06:00
|
|
|
}
|
|
|
|
|
2023-01-17 21:51:08 -07:00
|
|
|
SECTION("Size constructor")
|
2022-04-08 18:33:50 -06:00
|
|
|
{
|
|
|
|
const sf::RectangleShape rectangle({9, 8});
|
|
|
|
CHECK(rectangle.getSize() == sf::Vector2f(9, 8));
|
|
|
|
CHECK(rectangle.getPointCount() == 4);
|
|
|
|
CHECK(rectangle.getPoint(0) == sf::Vector2f(0, 0));
|
|
|
|
CHECK(rectangle.getPoint(1) == sf::Vector2f(9, 0));
|
|
|
|
CHECK(rectangle.getPoint(2) == sf::Vector2f(9, 8));
|
|
|
|
CHECK(rectangle.getPoint(3) == sf::Vector2f(0, 8));
|
2023-04-24 09:25:44 +02:00
|
|
|
CHECK(rectangle.getGeometricCenter() == sf::Vector2f(9.f, 8.f) / 2.f);
|
2022-04-08 18:33:50 -06:00
|
|
|
}
|
|
|
|
|
2023-01-17 21:51:08 -07:00
|
|
|
SECTION("Set size")
|
2022-04-08 18:33:50 -06:00
|
|
|
{
|
|
|
|
sf::RectangleShape rectangle({7, 6});
|
|
|
|
rectangle.setSize({5, 4});
|
|
|
|
CHECK(rectangle.getSize() == sf::Vector2f(5, 4));
|
2023-04-24 09:25:44 +02:00
|
|
|
CHECK(rectangle.getGeometricCenter() == sf::Vector2f(5.f, 4.f) / 2.f);
|
2022-04-08 18:33:50 -06:00
|
|
|
}
|
|
|
|
}
|