From 09719aab08b73ea88d19f7b172a3056bb23848ac Mon Sep 17 00:00:00 2001 From: Jiaming Zhang <jiamingz3@student.unimelb.edu.au> Date: Sat, 1 Sep 2018 16:30:52 +1000 Subject: [PATCH] Update BoundaryTests.java --- test/swen90006/machine/BoundaryTests.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/swen90006/machine/BoundaryTests.java b/test/swen90006/machine/BoundaryTests.java index a1aef89..5a86cf5 100644 --- a/test/swen90006/machine/BoundaryTests.java +++ b/test/swen90006/machine/BoundaryTests.java @@ -24,16 +24,6 @@ public class BoundaryTests { } - //Any method annotation with "@Test" is executed as a test. - @Test public void aTest() - { - //the assertEquals method used to check whether two values are - //equal, using the equals method - final int expected = 2; - final int actual = 1 + 1; - assertEquals(expected, actual); - } - //To test B1 in Machine. @Test public void b1Test() { -- GitLab