| /* | |
| * Created by Phil on 22/10/2010. | |
| * Copyright 2010 Two Blue Cubes Ltd | |
| * | |
| * 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) | |
| */ | |
| // These reporters are not included in the single include, so must be included separately in the main file | |
| // Some example tag aliases | |
| CATCH_REGISTER_TAG_ALIAS( "[@nhf]", "[failing]~[.]" ) | |
| CATCH_REGISTER_TAG_ALIAS( "[@tricky]", "[tricky]~[.]" ) | |
| struct TestListener : Catch::TestEventListenerBase { | |
| using TestEventListenerBase::TestEventListenerBase; // inherit constructor | |
| }; | |
| CATCH_REGISTER_LISTENER( TestListener ) | |