blob: 5a57e138f91910f54771b23e20cc4b581f81ca79 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <gtest/gtest.h>
// Demonstrate some basic assertions.
TEST(HelloTest, BasicAssertions) {
// Expect two strings not to be equal.
EXPECT_STRNE("hello", "world");
// Expect equality.
EXPECT_EQ(7 * 6, 42);
}
|