The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
352 B
14 lines
352 B
#include<gtest/gtest.h> |
|
|
|
TEST(basic_test, eq_works) { |
|
ASSERT_EQ(0, 1-1) << "Equality is broken. Mass panic!"; |
|
} |
|
|
|
TEST(basic_test, neq_works) { |
|
ASSERT_NE(15, 106) << "Inequal is equal. The foundations of space and time are in jeopardy."; |
|
} |
|
|
|
int main(int argc, char **argv) { |
|
::testing::InitGoogleTest(&argc, argv); |
|
return RUN_ALL_TESTS(); |
|
}
|
|
|