mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-16 10:42:25 +01:00
f7cd0ba051
This PR introduces a new `TEST_CASE` macro called `TEST_CASE_PERSISTENT_FIXTURE`. `TEST_CASE_PERSISTENT_FIXTURE` offers the same functionality as `TEST_CASE_METHOD` except for one difference. The object on which the test method is invoked is only created once for all invocations of the test case. The object is created just after the `testCaseStarting` event is broadcast and the object is destroyed just before the `testCaseEnding` event is broadcast. The main motivation for this new functionality is to allow `TEST_CASE`s to do expensive setup and teardown once per `TEST_CASE`, without having to resort to abusing event listeners or static function variables with manual initialization. Implements #1602 --------- Co-authored-by: Martin Hořeňovský <martin.horenovsky@gmail.com>
48 lines
2.7 KiB
Markdown
48 lines
2.7 KiB
Markdown
<a id="top"></a>
|
|
# List of examples
|
|
|
|
## Already available
|
|
|
|
- Test Case: [Single-file](../examples/010-TestCase.cpp)
|
|
- Test Case: [Multiple-file 1](../examples/020-TestCase-1.cpp), [2](../examples/020-TestCase-2.cpp)
|
|
- Assertion: [REQUIRE, CHECK](../examples/030-Asn-Require-Check.cpp)
|
|
- Fixture: [Sections](../examples/100-Fix-Section.cpp)
|
|
- Fixture: [Class-based fixtures](../examples/110-Fix-ClassFixture.cpp)
|
|
- Fixture: [Persistent fixtures](../examples/111-Fix-PersistentFixture.cpp)
|
|
- BDD: [SCENARIO, GIVEN, WHEN, THEN](../examples/120-Bdd-ScenarioGivenWhenThen.cpp)
|
|
- Listener: [Listeners](../examples/210-Evt-EventListeners.cpp)
|
|
- Configuration: [Provide your own output streams](../examples/231-Cfg-OutputStreams.cpp)
|
|
- Generators: [Create your own generator](../examples/300-Gen-OwnGenerator.cpp)
|
|
- Generators: [Use map to convert types in GENERATE expression](../examples/301-Gen-MapTypeConversion.cpp)
|
|
- Generators: [Run test with a table of input values](../examples/302-Gen-Table.cpp)
|
|
- Generators: [Use variables in generator expressions](../examples/310-Gen-VariablesInGenerators.cpp)
|
|
- Generators: [Use custom variable capture in generator expressions](../examples/311-Gen-CustomCapture.cpp)
|
|
|
|
|
|
## Planned
|
|
|
|
- Assertion: [REQUIRE_THAT and Matchers](../examples/040-Asn-RequireThat.cpp)
|
|
- Assertion: [REQUIRE_NO_THROW](../examples/050-Asn-RequireNoThrow.cpp)
|
|
- Assertion: [REQUIRE_THROWS](../examples/050-Asn-RequireThrows.cpp)
|
|
- Assertion: [REQUIRE_THROWS_AS](../examples/070-Asn-RequireThrowsAs.cpp)
|
|
- Assertion: [REQUIRE_THROWS_WITH](../examples/080-Asn-RequireThrowsWith.cpp)
|
|
- Assertion: [REQUIRE_THROWS_MATCHES](../examples/090-Asn-RequireThrowsMatches.cpp)
|
|
- Floating point: [Approx - Comparisons](../examples/130-Fpt-Approx.cpp)
|
|
- Logging: [CAPTURE - Capture expression](../examples/140-Log-Capture.cpp)
|
|
- Logging: [INFO - Provide information with failure](../examples/150-Log-Info.cpp)
|
|
- Logging: [WARN - Issue warning](../examples/160-Log-Warn.cpp)
|
|
- Logging: [FAIL, FAIL_CHECK - Issue message and force failure/continue](../examples/170-Log-Fail.cpp)
|
|
- Logging: [SUCCEED - Issue message and continue](../examples/180-Log-Succeed.cpp)
|
|
- Report: [User-defined type](../examples/190-Rpt-ReportUserDefinedType.cpp)
|
|
- Report: [User-defined reporter](../examples/202-Rpt-UserDefinedReporter.cpp)
|
|
- Report: [Automake reporter](../examples/205-Rpt-AutomakeReporter.cpp)
|
|
- Report: [TAP reporter](../examples/206-Rpt-TapReporter.cpp)
|
|
- Report: [Multiple reporter](../examples/208-Rpt-MultipleReporters.cpp)
|
|
- Configuration: [Provide your own main()](../examples/220-Cfg-OwnMain.cpp)
|
|
- Configuration: [Compile-time configuration](../examples/230-Cfg-CompileTimeConfiguration.cpp)
|
|
- Configuration: [Run-time configuration](../examples/240-Cfg-RunTimeConfiguration.cpp)
|
|
|
|
---
|
|
|
|
[Home](Readme.md#top)
|