forked from ISchwarz23/Algorithms-Part1---Assignments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFastCollinearPointsTest.java
79 lines (61 loc) · 2.64 KB
/
FastCollinearPointsTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Created by Ingo on 23.09.2015.
*/
public class FastCollinearPointsTest {
@Test(expected = NullPointerException.class)
public void shouldThrowNullPointerExceptionIfNullIsPassedToConstructor() {
new FastCollinearPoints(null);
}
@Test(expected = NullPointerException.class)
public void shouldThrowNullPointerExceptionIfOnePointIsNull() {
Point[] points = new Point[] { new Point(0, 0), new Point(1, 1), null, new Point(3, 3)};
new FastCollinearPoints(points);
}
@Test(expected = IllegalArgumentException.class)
public void shouldThrowIllegalArgumentExceptionIfPointIsGivenTwice() {
Point[] points = new Point[] { new Point(0, 0), new Point(1, 1), new Point(0, 0), new Point(3, 3)};
new FastCollinearPoints(points);
}
@Test
public void shouldFindHorizontalLineSegment() {
// given
Point[] points = new Point[] { new Point(0, 0), new Point(1, 0), new Point(3, 0), new Point(1, 1), new Point(2, 0)};
// when
FastCollinearPoints cut = new FastCollinearPoints(points);
// then
assertEquals(1, cut.numberOfSegments());
assertEquals("(0, 0) -> (3, 0)", cut.segments()[0].toString());
}
@Test
public void shouldFindVerticalLineSegment() {
// given
Point[] points = new Point[] { new Point(0, 0), new Point(1, 1), new Point(0, 1), new Point(0, 2), new Point(0, 3)};
// when
FastCollinearPoints cut = new FastCollinearPoints(points);
// then
assertEquals(1, cut.numberOfSegments());
assertEquals("(0, 0) -> (0, 3)", cut.segments()[0].toString());
}
@Test
public void shouldFindLineSegment1() {
// given
Point[] points = new Point[] { new Point(0, 0), new Point(1, 1), new Point(0, 1), new Point(2, 2), new Point(3, 3), new Point(4, 4), new Point(5, 5)};
// when
FastCollinearPoints cut = new FastCollinearPoints(points);
// then
assertEquals(1, cut.numberOfSegments());
assertEquals("(0, 0) -> (5, 5)", cut.segments()[0].toString());
}
@Test
public void shouldFindLineSegment2() {
// given
Point[] points = new Point[] { new Point(0, 0), new Point(1, 2), new Point(0, 1), new Point(2, 4), new Point(3, 6)};
// when
FastCollinearPoints cut = new FastCollinearPoints(points);
// then
assertEquals(1, cut.numberOfSegments());
assertEquals("(0, 0) -> (3, 6)", cut.segments()[0].toString());
}
}