Files
linux-kernel-module-cheat/userland/libs/googletest/fail.cpp
Ciro Santilli 六四事件 法轮功 39073519b1 GoogleTest hello world.
./build and ./test work automatically when cwd is inside userland/libs/XXX
without --package-all.
2020-11-25 00:00:00 +00:00

10 lines
134 B
C++

#include <gtest/gtest.h>
TEST(FailTest, ThisTestPasses) {
EXPECT_EQ(1, 1);
}
TEST(FailTest, ThisTestFails) {
EXPECT_EQ(1, 2);
}