Skip to content

Commit 48791bf

Browse files
committed
Project code style
1 parent 55ba62a commit 48791bf

7 files changed

+38
-16
lines changed

.idea/codeStyleSettings.xml

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/test/java/tetris/Step1_FallingBlocksTest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
package tetris;
66

77
import net.orfjackal.nestedjunit.NestedJUnit;
8-
import org.junit.Assert;
9-
import org.junit.Before;
10-
import org.junit.Test;
8+
import org.junit.*;
119
import org.junit.runner.RunWith;
1210

1311
/**

src/test/java/tetris/Step2_RotatingPiecesOfBlocksTest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
package tetris;
66

77
import net.orfjackal.nestedjunit.NestedJUnit;
8-
import org.junit.Assert;
9-
import org.junit.Before;
10-
import org.junit.Test;
8+
import org.junit.*;
119
import org.junit.runner.RunWith;
1210

1311
/**

src/test/java/tetris/Step3_RotatingTetrominoesTest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
package tetris;
66

77
import net.orfjackal.nestedjunit.NestedJUnit;
8-
import org.junit.Assert;
9-
import org.junit.Before;
10-
import org.junit.Test;
8+
import org.junit.*;
119
import org.junit.runner.RunWith;
1210

1311
/**

src/test/java/tetris/Step4_FallingPiecesTest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
package tetris;
66

77
import net.orfjackal.nestedjunit.NestedJUnit;
8-
import org.junit.Assert;
9-
import org.junit.Before;
10-
import org.junit.Test;
8+
import org.junit.*;
119
import org.junit.runner.RunWith;
1210

1311
/**

src/test/java/tetris/Step5_MovingAFallingPieceTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
package tetris;
66

77
import net.orfjackal.nestedjunit.NestedJUnit;
8-
import org.junit.Assert;
9-
import org.junit.Ignore;
8+
import org.junit.*;
109
import org.junit.runner.RunWith;
1110

1211
@Ignore("contains no test")

src/test/java/tetris/Step6_RotatingAFallingPieceTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
package tetris;
66

77
import net.orfjackal.nestedjunit.NestedJUnit;
8-
import org.junit.Assert;
9-
import org.junit.Ignore;
8+
import org.junit.*;
109
import org.junit.runner.RunWith;
1110

1211
@Ignore("contains no test")

0 commit comments

Comments
 (0)