mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 13:19:55 +01:00
16 lines
695 B
C++
16 lines
695 B
C++
|
// include set of usage tests into one file for compiler performance test purposes
|
||
|
// This whole file can now be included multiple times in 10.tests.cpp, and *that*
|
||
|
// file included multiple times (in 100.tests.cpp)
|
||
|
|
||
|
// Note that the intention is only for these files to be compiled. They will
|
||
|
// fail at runtime due to the re-user of test case names
|
||
|
|
||
|
#include "../UsageTests/Approx.tests.cpp"
|
||
|
#include "../UsageTests/BDD.tests.cpp"
|
||
|
#include "../UsageTests/Class.tests.cpp"
|
||
|
#include "../UsageTests/Compilation.tests.cpp"
|
||
|
#include "../UsageTests/Condition.tests.cpp"
|
||
|
#include "../UsageTests/Exception.tests.cpp"
|
||
|
#include "../UsageTests/Matchers.tests.cpp"
|
||
|
#include "../UsageTests/Misc.tests.cpp"
|