Skip to content

Commit 65c71a9

Browse files
committed
refactor: clang formatting
1 parent f91d9a5 commit 65c71a9

File tree

1 file changed

+5
-26
lines changed

1 file changed

+5
-26
lines changed

src/test/java/com/thealgorithms/geometry/DDALineTest.java

Lines changed: 5 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
import java.awt.Point;
44
import java.util.List;
55
import java.util.stream.Stream;
6+
import org.junit.jupiter.api.Assertions;
67
import org.junit.jupiter.params.ParameterizedTest;
78
import org.junit.jupiter.params.provider.Arguments;
89
import org.junit.jupiter.params.provider.MethodSource;
9-
import org.junit.jupiter.api.Assertions;
1010

1111
/**
1212
* The {@code DDALineTest} class contains unit tests for the
@@ -15,36 +15,15 @@
1515
class DDALineTest {
1616

1717
static Stream<Arguments> linePointsProvider() {
18-
return Stream.of(
19-
Arguments.of(0, 0, 5, 5, List.of(
20-
new Point(0, 0), new Point(1, 1), new Point(2, 2),
21-
new Point(3, 3), new Point(4, 4), new Point(5, 5)
22-
)),
23-
Arguments.of(0, 0, 5, 0, List.of(
24-
new Point(0, 0), new Point(1, 0), new Point(2, 0),
25-
new Point(3, 0), new Point(4, 0), new Point(5, 0)
26-
)),
27-
Arguments.of(0, 0, 0, 5, List.of(
28-
new Point(0, 0), new Point(0, 1), new Point(0, 2),
29-
new Point(0, 3), new Point(0, 4), new Point(0, 5)
30-
)),
31-
Arguments.of(-2, -2, -5, -5, List.of(
32-
new Point(-2, -2), new Point(-3, -3),
33-
new Point(-4, -4), new Point(-5, -5)
34-
)),
35-
Arguments.of(1, 1, 1, 1, List.of(new Point(1, 1))),
36-
Arguments.of(0, 0, 1, 5, List.of(
37-
new Point(0, 0), new Point(0, 1), new Point(0, 2),
38-
new Point(1, 3), new Point(1, 4), new Point(1, 5)
39-
))
40-
);
18+
return Stream.of(Arguments.of(0, 0, 5, 5, List.of(new Point(0, 0), new Point(1, 1), new Point(2, 2), new Point(3, 3), new Point(4, 4), new Point(5, 5))), Arguments.of(0, 0, 5, 0, List.of(new Point(0, 0), new Point(1, 0), new Point(2, 0), new Point(3, 0), new Point(4, 0), new Point(5, 0))),
19+
Arguments.of(0, 0, 0, 5, List.of(new Point(0, 0), new Point(0, 1), new Point(0, 2), new Point(0, 3), new Point(0, 4), new Point(0, 5))), Arguments.of(-2, -2, -5, -5, List.of(new Point(-2, -2), new Point(-3, -3), new Point(-4, -4), new Point(-5, -5))),
20+
Arguments.of(1, 1, 1, 1, List.of(new Point(1, 1))), Arguments.of(0, 0, 1, 5, List.of(new Point(0, 0), new Point(0, 1), new Point(0, 2), new Point(1, 3), new Point(1, 4), new Point(1, 5))));
4121
}
4222

4323
@ParameterizedTest
4424
@MethodSource("linePointsProvider")
4525
void testFindLine(int x0, int y0, int x1, int y1, List<Point> expected) {
4626
List<Point> actual = DDALine.findLine(x0, y0, x1, y1);
47-
Assertions.assertEquals(expected, actual,
48-
"The DDA algorithm should generate the expected ordered points.");
27+
Assertions.assertEquals(expected, actual, "The DDA algorithm should generate the expected ordered points.");
4928
}
5029
}

0 commit comments

Comments
 (0)