|
| 1 | +package com.thealgorithms.geometry; |
| 2 | + |
| 3 | +import java.awt.Point; |
| 4 | +import java.util.List; |
| 5 | +import java.util.stream.Stream; |
| 6 | +import org.junit.jupiter.api.Assertions; |
| 7 | +import org.junit.jupiter.params.ParameterizedTest; |
| 8 | +import org.junit.jupiter.params.provider.Arguments; |
| 9 | +import org.junit.jupiter.params.provider.MethodSource; |
| 10 | + |
| 11 | +/** |
| 12 | + * The {@code DDALineTest} class contains unit tests for the |
| 13 | + * {@code DDALine} class, specifically testing the {@code findLine} method. |
| 14 | + */ |
| 15 | +class DDALineTest { |
| 16 | + |
| 17 | + static Stream<Arguments> linePointsProvider() { |
| 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)))); |
| 21 | + } |
| 22 | + |
| 23 | + @ParameterizedTest |
| 24 | + @MethodSource("linePointsProvider") |
| 25 | + void testFindLine(int x0, int y0, int x1, int y1, List<Point> expected) { |
| 26 | + List<Point> actual = DDALine.findLine(x0, y0, x1, y1); |
| 27 | + Assertions.assertEquals(expected, actual, "The DDA algorithm should generate the expected ordered points."); |
| 28 | + } |
| 29 | +} |
0 commit comments