Added namespace in method testCaseEnded

Did not compile as is
This commit is contained in:
Patrick Junger
2017-05-14 14:11:47 +02:00
committed by GitHub
parent b8443e67da
commit d4e0b1d093

View File

@@ -31,7 +31,7 @@ struct MyListener : Catch::TestEventListenerBase {
// Perform some setup before a test case is run // Perform some setup before a test case is run
} }
virtual void testCaseEnded( TestCaseStats const& testCaseStats ) override { virtual void testCaseEnded( Catch::TestCaseStats const& testCaseStats ) override {
// Tear-down after a test case is run // Tear-down after a test case is run
} }
}; };