improved comparison test

This commit is contained in:
Kjell Hedstrom 2015-08-04 07:44:39 -06:00
parent 13cc398f06
commit 49aee72faf

View File

@ -131,6 +131,8 @@ TEST(Basics, Levels) {
EXPECT_EQ(info, INFO);
EXPECT_TRUE(INFO == INFO);
EXPECT_FALSE(info == WARNING);
EXPECT_TRUE(info != WARNING);
EXPECT_FALSE(info != INFO);
}
TEST(Basics, Shutdown) {