Skip to content
Snippets Groups Projects
Commit 9898ca7d authored by Sebastian Ohlmann's avatar Sebastian Ohlmann
Browse files

Remove add2 function

parent bf5abf5e
No related branches found
No related tags found
No related merge requests found
Pipeline #113213 passed
......@@ -2,7 +2,6 @@
using namespace std;
int add(int a,int b){return a+b;}
int add2(int a,int b){return a+b+2;}
int sub(int a,int b){return a-b;}
int mul(int a,int b){return a*b;}
int dv(int a,int b){
......
......@@ -4,9 +4,6 @@
TEST(FuncsTest,Add){
EXPECT_EQ(6,add(4,2));
};
TEST(FuncsTest,Add2){
EXPECT_EQ(8,add2(4,2));
};
TEST(FuncsTest,Sub){
EXPECT_EQ(2,sub(4,2));
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment