File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
#include < string >
4
4
#include < vector >
5
5
6
- TEST_CASE("suite+assert+stl") {
6
+ TEST_CASE("suite+assert+stl. <%= v %> ") {
7
7
<% ( 1 ..n ) . each do |i | %>
8
8
SECTION("<%= v %> .<%= i %> ") {
9
9
CHECK(std::string{"string"} == std::string{"string"});
Original file line number Diff line number Diff line change 1
1
#define CATCH_CONFIG_FAST_COMPILE
2
2
#include < catch .hpp >
3
3
4
- TEST_CASE("suite+assert") {
4
+ TEST_CASE("suite+assert. <%= v %> ") {
5
5
<% ( 1 ..n ) . each do |i | %>
6
6
SECTION("<%= v %> .<%= i %> ") {
7
7
CHECK(true == true);
Original file line number Diff line number Diff line change 1
1
#define CATCH_CONFIG_FAST_COMPILE
2
2
#include < catch .hpp >
3
3
4
- TEST_CASE("suite") {
4
+ TEST_CASE("suite. <%= v %> ") {
5
5
<% ( 1 ..n ) . each do |i | %>
6
6
SECTION("<%= v %> .<%= i %> ") { }
7
7
<% end %>
Original file line number Diff line number Diff line change 4
4
#include < string >
5
5
#include < vector >
6
6
7
- TEST_CASE("suite+assert+stl") {
7
+ TEST_CASE("suite+assert+stl. <%= v %> ") {
8
8
<% ( 1 ..n ) . each do |i | %>
9
9
SUBCASE("<%= v %> .<%= i %> ") {
10
10
CHECK(std::string{"string"} == std::string{"string"});
Original file line number Diff line number Diff line change 2
2
#define DOCTEST_CONFIG_SUPER_FAST_ASSERTS
3
3
#include < doctest .h >
4
4
5
- TEST_CASE("suite+assert") {
5
+ TEST_CASE("suite+assert. <%= v %> ") {
6
6
<% ( 1 ..n ) . each do |i | %>
7
7
SUBCASE("<%= v %> .<%= i %> ") {
8
8
CHECK(true == true);
Original file line number Diff line number Diff line change 2
2
#define DOCTEST_CONFIG_SUPER_FAST_ASSERTS
3
3
#include < doctest .h >
4
4
5
- TEST_CASE("suite") {
5
+ TEST_CASE("suite. <%= v %> ") {
6
6
<% ( 1 ..n ) . each do |i | %>
7
7
SUBCASE("<%= v %> .<%= i %> ") { }
8
8
<% end %>
You can’t perform that action at this time.
0 commit comments