summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/2 gtest/test.cc
blob: 21efd68162e671ac534ee5b6115b47a6f6ccb8b1 (plain)
1
2
3
4
5
6
7
8
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.";
}