Skip to content
Snippets Groups Projects
Commit af1c186a authored by zhouw4's avatar zhouw4
Browse files

.

parent 19637825
No related branches found
No related tags found
No related merge requests found
......@@ -239,15 +239,6 @@ public class BoundaryTests
assertEquals(m.execute(num14), actual);
}
@Test(timeout = 5000)
public void num15_Test(){
Machine m = new Machine();
List<String> num15 = new ArrayList<String>();
num15.add("JZ R0 0");
num15.add("RET R2");
m.execute(num15);
}
@Test(expected = NoReturnValueException.class)
public void num16_Test(){
Machine m = new Machine();
......@@ -295,14 +286,6 @@ public class BoundaryTests
assertEquals(m.execute(num20), actual);
}
@Test(timeout = 5000)
public void num21_Test(){
Machine m = new Machine();
List<String> num21 = new ArrayList<String>();
num21.add("JMP 0");
m.execute(num21);
}
@Test(expected = NoReturnValueException.class)
public void num22_Test(){
Machine m = new Machine();
......
......@@ -217,15 +217,6 @@ public class PartitioningTests
assertEquals(m.execute(EC20), actual);
}
@Test(timeout = 5000)
public void EC36_Test(){
Machine m = new Machine();
List<String> EC36 = new ArrayList<String>();
EC36.add("JZ R0 0");
EC36.add("RET R0");
m.execute(EC36);
}
@Test(expected = NoReturnValueException.class)
public void EC44_Test(){
Machine m = new Machine();
......@@ -274,14 +265,6 @@ public class PartitioningTests
assertEquals(m.execute(EC22), actual);
}
@Test(timeout = 5000)
public void EC24_Test(){
Machine m = new Machine();
List<String> EC24 = new ArrayList<String>();
EC24.add("JMP 0");
m.execute(EC24);
}
@Test(expected = NoReturnValueException.class)
public void EC37_Test(){
Machine m = new Machine();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment