[lang-ref] ( assert_true ) ( cpp )

TEST(xUnit, AssertTrue) {
	// EXPECT_TRUE(x)
	bool r = (1 + 1 == 2);
    EXPECT_TRUE(r);
}