From 0a55effe7b2ab7faeaef4e42cb4d1d0d8bc3c125 Mon Sep 17 00:00:00 2001
From: Chamira Balasuriya <c.balasuriya@student.unimelb.edu.au>
Date: Tue, 4 Sep 2018 10:14:10 +1000
Subject: [PATCH] remove redundant example tests

---
 test/swen90006/machine/BoundaryTests.java | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/test/swen90006/machine/BoundaryTests.java b/test/swen90006/machine/BoundaryTests.java
index c56e000..a79c364 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.
 
-- 
GitLab