Added tests

Tags: #test
This commit is contained in:
Michael Rausch
2017-03-09 12:22:38 +13:00
parent d33a88d313
commit 8d85557e10
4 changed files with 44 additions and 2 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ public class Boat {
*
* @param velocity The velocity of boat
*/
public void setVelocity(float velocity) {
public void setVelocity(double velocity) {
this.velocity = velocity;
}
}