From 526c07890ea47d4dc6313f6399bd2d2deb05608f Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Sun, 10 Mar 2024 19:49:35 +0200 Subject: [PATCH] test: remove examples --- src/test.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/test.cpp b/src/test.cpp index 063393c..49ef7ca 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -4,14 +4,14 @@ #include // TEST(TestSuiteName, testName) {...} -TEST(ProgramTest, testFunction) { +/* TEST(ProgramTest, testFunction) { EXPECT_EQ(functionToTest(4), 8); -} +} */ -TEST(ProgramTest, testFunctionShouldFail) { +/* TEST(ProgramTest, testFunctionShouldFail) { EXPECT_EQ(functionToTest(4), 12); -} +} */ -TEST(PrepTest, testAddFunc) { +/* TEST(PrepTest, testAddFunc) { EXPECT_EQ(add(4, 2), 6); -} +} */