Skip to content

Commit

Permalink
Remove test that tests are run
Browse files Browse the repository at this point in the history
Remove the TestGTest tests
  • Loading branch information
steve-downey committed Aug 15, 2024
1 parent 51f1f2b commit d153523
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/Beman/Optional26/tests/optional.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

#include <gtest/gtest.h>

TEST(OptionalTest, TestGTest) { ASSERT_EQ(1, 1); }

TEST(OptionalTest, Constructors) {
beman::optional26::optional<int> i1;
beman::optional26::optional<int> i2{beman::optional26::nullopt};
Expand Down
2 changes: 0 additions & 2 deletions src/Beman/Optional26/tests/optional_constexpr.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

#include <gtest/gtest.h>

TEST(OptionalConstexprTest, TestGTest) { ASSERT_EQ(1, 1); }


TEST(OptionalConstexprTest, Constructors) {
constexpr beman::optional26::optional<int> i1;
Expand Down
3 changes: 0 additions & 3 deletions src/Beman/Optional26/tests/optional_ref.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

#include <gtest/gtest.h>

TEST(OptionalRefTest, TestGTest) { ASSERT_EQ(1, 1); }


TEST(OptionalRefTest, Constructors) {
beman::optional26::optional<int&> i1;
beman::optional26::optional<int&> i2{beman::optional26::nullopt};
Expand Down

0 comments on commit d153523

Please sign in to comment.