X Tutup
Skip to content

Commit 6df6eb6

Browse files
author
Troy Melhase
committed
Renaming test classes.
1 parent 18114ea commit 6df6eb6

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Continue1 {
1+
class Continue0 {
22
public static void main(String[] args) {
33
int x = 0;
44
while (x < 10) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class DoWhile2 {
1+
class DoWhile0 {
22
public static void main(String[] args) {
33
int x = 10;
44
do {

test/Enum2.java renamed to test/Enum0.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public int code() {
1313
}
1414
}
1515

16-
class Enum2 {
16+
class Enum0 {
1717
public static void main(String[] args) {
1818
System.out.println(Color.WHITE.code());
1919
}

test/Expr2.java renamed to test/Expr0.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Expr2 {
1+
class Expr0 {
22
public static void main(String[] args) {
33
int x = 0;
44
if (x++ == 0) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class ForEach1 {
1+
class ForEach0 {
22
public static void main(String[] args) {
33
int ints[] = {1, 2, 3, 4};
44
for (int i: ints) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class ForLoop1 {
1+
class ForLoop0 {
22
public static void main(String[] args) {
33
int ints[] = {1, 2, 3, 4};
44
for (int i = 0; i < 3; i++) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public String toString() {
2626

2727

2828

29-
class GenericPairs {
29+
class GenericPairs0 {
3030

3131
public void printLines(List<String> strings) {
3232
for (String s: strings) {

test/If2.java renamed to test/If0.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class If2 {
1+
class If0 {
22
public static void main(String[] args) {
33
int x = 0;
44

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface C0 extends B0, B1 {
1414

1515
class Nothing {};
1616

17-
class Interface3 implements C0 {
17+
class Interface0 implements C0 {
1818
public void m(int x) {
1919
System.out.println(x);
2020
}
@@ -24,7 +24,7 @@ public void n(int y) {
2424
}
2525

2626
public static void main(String[] args) {
27-
Interface3 i = new Interface3();
27+
Interface0 i = new Interface0();
2828
i.m(0);
2929
i.n(1);
3030
}

0 commit comments

Comments
 (0)
X Tutup