diff --git a/test/test.c b/test/test.c index 8e5564a..5c4eb36 100644 --- a/test/test.c +++ b/test/test.c @@ -101,3 +101,8 @@ ASSERT_EQ(42, fixture->foo); fixture->foo = 13; } + +UTEST_F(MyTest, c2) { + ASSERT_EQ(42, fixture->foo); + fixture->foo = 13; +} diff --git a/test/test.c b/test/test.c index 8e5564a..5c4eb36 100644 --- a/test/test.c +++ b/test/test.c @@ -101,3 +101,8 @@ ASSERT_EQ(42, fixture->foo); fixture->foo = 13; } + +UTEST_F(MyTest, c2) { + ASSERT_EQ(42, fixture->foo); + fixture->foo = 13; +} diff --git a/test/test.cpp b/test/test.cpp index 6a3a275..46e5785 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -101,3 +101,8 @@ ASSERT_EQ(42, fixture->foo); fixture->foo = 13; } + +UTEST_F(MyTest, cpp2) { + ASSERT_EQ(42, fixture->foo); + fixture->foo = 13; +}