We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7d2410 commit 3f21ca5Copy full SHA for 3f21ca5
tests/unit/foo/bar/bar_test.cc
@@ -3,7 +3,7 @@
3
#include "foo/bar/bar.h"
4
5
// Demonstrate some basic assertions.
6
-TEST(BarTest, BasicAssertions) {
+TEST(FooUnitTests, TestBarDiff) {
7
auto bar = foo::bar::Bar();
8
auto n = bar.diff(5, 3);
9
EXPECT_EQ(n, 2);
tests/unit/foo/foo_test.cc
#include "foo/foo.h"
-TEST(FooTest, BasicAssertions) {
+TEST(FooUnitTests, TestFooSum) {
auto foo = foo::Foo();
auto n = foo.sum(5, 3);
EXPECT_EQ(n, 8);
0 commit comments