parent
1b11431079
commit
7882acbd72
4 changed files with 27 additions and 9 deletions
@ -0,0 +1,6 @@ |
||||
project('gtest', 'cxx') |
||||
|
||||
gtest = find_dep('gtest', required : true) |
||||
|
||||
e = executable('testprog', 'test.cc', deps : gtest) |
||||
add_test('gtest test', e) |
@ -0,0 +1,9 @@ |
||||
#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."; |
||||
} |
Loading…
Reference in new issue