From 11b3fe4283a64fd90fd1a5fe053b2913e913c94e Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Tue, 28 Apr 2015 22:46:24 +0200 Subject: [PATCH] Added tags (module names) in TEST_CASE macros --- test/src/Rect.cpp | 2 +- test/src/Vector2.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/Rect.cpp b/test/src/Rect.cpp index f6b06ee25..70bd48382 100644 --- a/test/src/Rect.cpp +++ b/test/src/Rect.cpp @@ -2,7 +2,7 @@ #include #include "UnitTests.hpp" -TEST_CASE("sf::Rect class") +TEST_CASE("sf::Rect class template", "[graphics]") { SECTION("Construction") { diff --git a/test/src/Vector2.cpp b/test/src/Vector2.cpp index 50a53b4ab..556a49522 100644 --- a/test/src/Vector2.cpp +++ b/test/src/Vector2.cpp @@ -3,7 +3,7 @@ // 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") {