Added non working unit test testAdd()

main
YaFedImYaEatIm 10 years ago
parent bef70d89dc
commit f471e8ce31

1
.gitignore vendored

@ -1,2 +1,3 @@
target/
.idea/
SENG202.iml

@ -35,4 +35,9 @@ public class AppTest
{
assertTrue( true );
}
public void testAdd(){
double result = 3.0 + 4.0;
assertTrue(result == 6.0);
}
}

Loading…
Cancel
Save