mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-01 12:55:40 +02:00
Random bits of clean-up
This commit is contained in:
@@ -39,14 +39,6 @@ struct TestDef {
|
||||
|
||||
};
|
||||
|
||||
//TEST( "./succeeding/conditions/equality" + Description("nyaya") )
|
||||
//{
|
||||
// TEST_CASE( [Name("inner")] )
|
||||
// {
|
||||
//
|
||||
// }
|
||||
//}
|
||||
|
||||
// The "failing" tests all use the CHECK macro, which continues if the specific test fails.
|
||||
// This allows us to see all results, even if an earlier check fails
|
||||
|
||||
|
@@ -304,3 +304,12 @@ TEST_CASE( "first tag", "[tag1]" )
|
||||
TEST_CASE( "second tag", "[tag2]" )
|
||||
{
|
||||
}
|
||||
|
||||
TEST_CASE( "spawn a new process", "[hide]" )
|
||||
{
|
||||
// !TBD Work in progress
|
||||
char line[200];
|
||||
FILE* output = popen("./CatchSelfTest ./failing/matchers/StartsWith", "r");
|
||||
while ( fgets(line, 199, output) )
|
||||
std::cout << line;
|
||||
}
|
||||
|
Reference in New Issue
Block a user