[lang-ref] ( assert_equals ) ( cpp )

TEST(xUnit, AssertEquals) {
	// EXPECT_EQ(v, 3)
	int v = 3;
    EXPECT_EQ(v, 3);
}