First cut of generators

This commit is contained in:
Phil Nash
2011-01-26 23:23:33 +00:00
parent 455c2998a0
commit c2b96d7ddb
8 changed files with 256 additions and 21 deletions

View File

@@ -79,3 +79,16 @@ TEST_CASE( "./succeeding/Misc/stdout,stderr", "Sends stuff to stdout and stderr"
std::cerr << "An error";
}
// An unnamed test case. A name, of the form, "unnamed/#" is generated, where
// # is an incrementing integer
ANON_TEST_CASE()
{
int i = 7;
REQUIRE( i == 7 );
}
ANON_TEST_CASE()
{
int i = 7;
REQUIRE( i == 8 );
}