This commit is contained in:
Martin Hořeňovský
2024-08-14 12:05:21 +02:00
parent f24569a1b4
commit 31588bb4f5
9 changed files with 531 additions and 284 deletions

View File

@@ -112,12 +112,12 @@ namespace Catch {
TestCaseHandle(TestCaseInfo* info, ITestInvoker* invoker) :
m_info(info), m_invoker(invoker) {}
void prepareTestCase() const {
void prepareTestCase() const {
m_invoker->prepareTestCase();
}
void tearDownTestCase() const {
m_invoker->tearDownTestCase();
void tearDownTestCase() const {
m_invoker->tearDownTestCase();
}
void invoke() const {

View File

@@ -36,7 +36,7 @@ namespace Catch {
}
Version const& libraryVersion() {
static Version version( 3, 6, 0, "", 0 );
static Version version( 3, 7, 0, "", 0 );
return version;
}

View File

@@ -9,7 +9,7 @@
#define CATCH_VERSION_MACROS_HPP_INCLUDED
#define CATCH_VERSION_MAJOR 3
#define CATCH_VERSION_MINOR 6
#define CATCH_VERSION_MINOR 7
#define CATCH_VERSION_PATCH 0
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED