summaryrefslogtreecommitdiff
path: root/projects/SelfTest/IntrospectiveTests/Tag.tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'projects/SelfTest/IntrospectiveTests/Tag.tests.cpp')
-rw-r--r--projects/SelfTest/IntrospectiveTests/Tag.tests.cpp57
1 files changed, 0 insertions, 57 deletions
diff --git a/projects/SelfTest/IntrospectiveTests/Tag.tests.cpp b/projects/SelfTest/IntrospectiveTests/Tag.tests.cpp
deleted file mode 100644
index 775c2e71..00000000
--- a/projects/SelfTest/IntrospectiveTests/Tag.tests.cpp
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Created by Phil on 27/06/2014.
- * Copyright 2014 Two Blue Cubes Ltd. All rights reserved.
- *
- * Distributed under the Boost Software License, Version 1.0. (See accompanying
- * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- */
-
-#include "catch.hpp"
-#include "internal/catch_tag_alias_registry.h"
-
-TEST_CASE( "Tag alias can be registered against tag patterns" ) {
-#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
-
- Catch::TagAliasRegistry registry;
-
- registry.add( "[@zzz]", "[one][two]", Catch::SourceLineInfo( "file", 2 ) );
-
- SECTION( "The same tag alias can only be registered once" ) {
-
- try {
- registry.add( "[@zzz]", "[one][two]", Catch::SourceLineInfo( "file", 10 ) );
- FAIL( "expected exception" );
- }
- catch( std::exception& ex ) {
-#ifndef CATCH_CONFIG_DISABLE_MATCHERS
- std::string what = ex.what();
- using namespace Catch::Matchers;
- CHECK_THAT( what, Contains( "[@zzz]" ) );
- CHECK_THAT( what, Contains( "file" ) );
- CHECK_THAT( what, Contains( "2" ) );
- CHECK_THAT( what, Contains( "10" ) );
-#endif
- }
- }
-
- SECTION( "Tag aliases must be of the form [@name]" ) {
- CHECK_THROWS( registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) ) );
- CHECK_THROWS( registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) ) );
- CHECK_THROWS( registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) ) );
- CHECK_THROWS( registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) ) );
- }
-
-#endif
-}
-
-TEST_CASE("shortened hide tags are split apart") {
- auto testcase = Catch::makeTestCase(nullptr, "", {"fake test name", "[.magic-tag]"}, CATCH_INTERNAL_LINEINFO);
- REQUIRE_THAT(testcase.tags, Catch::VectorContains(std::string("magic-tag")) && Catch::VectorContains(std::string(".")));
-}
-
-TEST_CASE("adding a hide tag implicitly enables all others", "[tags]") {
- using Catch::VectorContains;
- auto tag = GENERATE(as<char const*>{}, "[!hide]", "[.]", "[.foo]");
- auto testcase = Catch::makeTestCase(nullptr, "", {"fake test name", tag}, CATCH_INTERNAL_LINEINFO);
- REQUIRE_THAT(testcase.tags, VectorContains(std::string(".")) && VectorContains(std::string("!hide")));
-}