Added tags (module names) in TEST_CASE macros

This commit is contained in:
Jan Haller 2015-04-28 22:46:24 +02:00 committed by Lukas Dürrenberger
parent c3e5a35a6e
commit 11b3fe4283
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#include <SFML/System/Vector2.hpp> #include <SFML/System/Vector2.hpp>
#include "UnitTests.hpp" #include "UnitTests.hpp"
TEST_CASE("sf::Rect class") TEST_CASE("sf::Rect class template", "[graphics]")
{ {
SECTION("Construction") SECTION("Construction")
{ {

View File

@ -3,7 +3,7 @@
// Use sf::Vector2i for tests. Test coverage is given, as there are no template specializations. // Use sf::Vector2i for tests. Test coverage is given, as there are no template specializations.
TEST_CASE("sf::Vector2 class") TEST_CASE("sf::Vector2 class template", "[system]")
{ {
SECTION("Construction") SECTION("Construction")
{ {