RoboidControl-cpp/test/hello_test.cc
2022-01-24 12:21:00 +01:00

13 lines
279 B
C++

#include <gtest/gtest.h>
namespace Passer {
// Demonstrate some basic assertions
TEST(DummyTest, BasicAssertions) {
// Expect two strings not to be equal.
EXPECT_STRNE("hello", "world");
// Expect equality.
EXPECT_EQ(7 * 6, 42);
}
}