Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion annotations/AtUnitComposition.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class AtUnitComposition {
}
public static void main(String[] args) throws Exception {
OSExecute.command(
"java onjava.atunit.AtUnit AtUnitComposition.class");
"java -cp .. onjava.atunit.AtUnit AtUnitComposition.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/AtUnitExample1.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public int methodTwo() {
@Test boolean anotherDisappointment() { return false; }
public static void main(String[] args) throws Exception {
OSExecute.command(
"java onjava.atunit.AtUnit AtUnitExample1.class");
"java -cp .. onjava.atunit.AtUnit AtUnitExample1.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/AtUnitExample2.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public int methodTwo() {
}
public static void main(String[] args) throws Exception {
OSExecute.command(
"java onjava.atunit.AtUnit AtUnitExample2.class");
"java -cp .. onjava.atunit.AtUnit AtUnitExample2.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/AtUnitExample3.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public int methodTwo() {
@Test boolean m2() { return methodTwo() == 2; }
public static void main(String[] args) throws Exception {
OSExecute.command(
"java onjava.atunit.AtUnit AtUnitExample3.class");
"java -cp .. onjava.atunit.AtUnit AtUnitExample3.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/AtUnitExample4.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public String scrambleWord() {
public static void main(String[] args) throws Exception {
System.out.println("starting");
OSExecute.command(
"java onjava.atunit.AtUnit AtUnitExample4.class");
"java -cp .. onjava.atunit.AtUnit AtUnitExample4.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/AtUnitExample5.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class AtUnitExample5 {
}
public static void main(String[] args) throws Exception {
OSExecute.command(
"java onjava.atunit.AtUnit AtUnitExample5.class");
"java -cp .. onjava.atunit.AtUnit AtUnitExample5.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/AtUnitExternalTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class AtUnitExternalTest extends AtUnitExample1 {
@Test boolean _methodTwo() { return methodTwo() == 2; }
public static void main(String[] args) throws Exception{
OSExecute.command(
"java onjava.atunit.AtUnit AtUnitExternalTest.class");
"java -cp .. onjava.atunit.AtUnit AtUnitExternalTest.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/HashSetTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class HashSetTest {
}
public static void main(String[] args) throws Exception {
OSExecute.command(
"java onjava.atunit.AtUnit HashSetTest.class");
"java -cp .. onjava.atunit.AtUnit HashSetTest.class");
}
}
/* Output:
Expand Down
2 changes: 1 addition & 1 deletion annotations/StackLStringTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class StackLStringTest extends StackL<String> {
}
public static void main(String[] args) throws Exception {
OSExecute.command(
"java onjava.atunit.AtUnit StackLStringTest.class");
"java -cp .. onjava.atunit.AtUnit StackLStringTest.class");
}
}
/* Output:
Expand Down