2022-05-22 12:43:10 +08:00
|
|
|
#include <SFML/Graphics/Glyph.hpp>
|
2022-06-26 10:41:32 +08:00
|
|
|
#include <GraphicsUtil.hpp>
|
2022-05-22 12:43:10 +08:00
|
|
|
|
|
|
|
#include <doctest.h>
|
|
|
|
|
|
|
|
TEST_CASE("sf::Glyph class - [graphics]")
|
|
|
|
{
|
|
|
|
SUBCASE("Construction")
|
|
|
|
{
|
|
|
|
const sf::Glyph glyph;
|
|
|
|
CHECK(glyph.advance == 0);
|
|
|
|
CHECK(glyph.lsbDelta == 0);
|
|
|
|
CHECK(glyph.rsbDelta == 0);
|
|
|
|
CHECK(glyph.bounds == sf::FloatRect());
|
|
|
|
CHECK(glyph.textureRect == sf::IntRect());
|
|
|
|
}
|
|
|
|
}
|