summaryrefslogtreecommitdiff
path: root/PlaygroundCpp/Sources/Playground.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'PlaygroundCpp/Sources/Playground.cpp')
-rw-r--r--PlaygroundCpp/Sources/Playground.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/PlaygroundCpp/Sources/Playground.cpp b/PlaygroundCpp/Sources/Playground.cpp
index c737a3c..2bbbeb9 100644
--- a/PlaygroundCpp/Sources/Playground.cpp
+++ b/PlaygroundCpp/Sources/Playground.cpp
@@ -42,18 +42,10 @@ static int getLastDigit(long m, long n) {
return sumFn - sumFm + 10;
}
}
-
-//TEST(FibPartialSumLastDigit, Five_Five) {
-// ASSERT_EQ(getLastDigit(5, 5), 5);
-//}
-//
//TEST(FibPartialSumLastDigit, Ten_200) {
// ASSERT_EQ(getLastDigit(10, 200), 2);
-//}
-//
//TEST(FibPartialSumLastDigit, One_2) {
// ASSERT_EQ(getLastDigit(1, 2), 2);
-//}
int main() {
long m, n;