forgot to format this

This commit is contained in:
Phuntsok Drak-pa 2019-03-28 12:40:00 +01:00
parent 7fa70b35e4
commit 8a215f4a74
1 changed files with 12 additions and 9 deletions

View File

@ -1,16 +1,19 @@
#include <gtest/gtest.h> #include <gtest/gtest.h>
TEST(SquareRootTest, PositiveNos) { TEST(SquareRootTest, PositiveNos)
ASSERT_EQ(6, 2 * 3); {
ASSERT_EQ(6, -2 * -3); ASSERT_EQ(6, 2 * 3);
ASSERT_EQ(6, -2 * -3);
} }
TEST(SquareRootTest, NegativeNos) { TEST(SquareRootTest, NegativeNos)
ASSERT_EQ(-6, -2 * 3); {
ASSERT_EQ(-6, 2 * -3); ASSERT_EQ(-6, -2 * 3);
ASSERT_EQ(-6, 2 * -3);
} }
int main(int argc, char **argv) { int main(int argc, char** argv)
testing::InitGoogleTest(&argc, argv); {
return RUN_ALL_TESTS(); testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
} }