RoboidControl-cpp/test/hello_test.cc
2022-01-23 15:09:46 +00:00

10 lines
229 B
C++

#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);
}