Revert "Test: [skip ci] make all example tests pass"

This reverts commit cc8a30929a.
This commit is contained in:
wmayer
2022-12-01 22:04:48 +01:00
parent 97ab7714fe
commit d8e0b73357

View File

@@ -1,21 +1,19 @@
#include "gtest/gtest.h"
TEST(FirstSuite, FirstTest){
EXPECT_EQ(1, 1) << "are in fact equal";
EXPECT_NE(1, 1) << "are in fact equal";
}
TEST(FirstSuite, SecondTest){
EXPECT_NE(1, 2) << "not equal";
EXPECT_EQ(1, 2) << "not equal";
}
TEST(FirstSuite, ThirdTest){
ASSERT_STREQ("A", "A") << "str not equal";
}
TEST(FirstSuite,FifthTest){
ASSERT_STREQ("am", "am") << "str equal";
ASSERT_STRNE("am", "am") << "str equal";
}
TEST(FirstSuite, FourthTest){
ASSERT_STRNE("am", "A") << "str not equal";
ASSERT_STREQ("am", "A") << "str not equal";
}