diff --git a/test/swen90006/machine/BoundaryTests.java b/test/swen90006/machine/BoundaryTests.java
index c56e000206c1267ad3956323f711104b3bdc1f3b..a79c364728fd19beae08b8a50248c6c0a208fafe 100644
--- a/test/swen90006/machine/BoundaryTests.java
+++ b/test/swen90006/machine/BoundaryTests.java
@@ -13,17 +13,7 @@ import static org.junit.Assert.*;
 public class BoundaryTests
 {
   Machine testMachine = new Machine ();
-  //Any method annotated with "@Before" will be executed before each test,
-  //allowing the tester to set up some shared resources.
-  @Before public void setUp()
-  {
-  }
-
-  //Any method annotated with "@After" will be executed after each test,
-  //allowing the tester to release any shared resources used in the setup.
-  @After public void tearDown()
-  {
-  }
+ 
 
   //Any method annotation with "@Test" is executed as a test.