Skip to content

Commit d153523

Browse files
committed
Remove test that tests are run
Remove the TestGTest tests
1 parent 51f1f2b commit d153523

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/Beman/Optional26/tests/optional.t.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
#include <gtest/gtest.h>
1515

16-
TEST(OptionalTest, TestGTest) { ASSERT_EQ(1, 1); }
17-
1816
TEST(OptionalTest, Constructors) {
1917
beman::optional26::optional<int> i1;
2018
beman::optional26::optional<int> i2{beman::optional26::nullopt};

src/Beman/Optional26/tests/optional_constexpr.t.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
#include <gtest/gtest.h>
1313

14-
TEST(OptionalConstexprTest, TestGTest) { ASSERT_EQ(1, 1); }
15-
1614

1715
TEST(OptionalConstexprTest, Constructors) {
1816
constexpr beman::optional26::optional<int> i1;

src/Beman/Optional26/tests/optional_ref.t.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
#include <gtest/gtest.h>
88

9-
TEST(OptionalRefTest, TestGTest) { ASSERT_EQ(1, 1); }
10-
11-
129
TEST(OptionalRefTest, Constructors) {
1310
beman::optional26::optional<int&> i1;
1411
beman::optional26::optional<int&> i2{beman::optional26::nullopt};

0 commit comments

Comments
 (0)