-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWarningLevelCalculatorTest.java
More file actions
122 lines (108 loc) · 3.69 KB
/
WarningLevelCalculatorTest.java
File metadata and controls
122 lines (108 loc) · 3.69 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication2;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author Adam
*/
public class WarningLevelCalculatorTest {
public WarningLevelCalculatorTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
/**
* Test of parseList method, of class WarningLevelCalculator.
*/
@Test
public void testParseList() {
System.out.println("parseList");
WarningLevelCalculator instance = new WarningLevelCalculator();
instance.parseList();
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of detectCollision method, of class WarningLevelCalculator.
*/
@Test
public void testDetectCollision() {
System.out.println("detectCollision");
Aircraft one = null;
Aircraft two = null;
WarningLevelCalculator instance = new WarningLevelCalculator();
Collision expResult = null;
Collision result = instance.detectCollision(one, two);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of testCollisionPoint method, of class WarningLevelCalculator.
*/
@Test
public void testTestCollisionPoint() {
System.out.println("testCollisionPoint");
Collision collision = null;
WarningLevelCalculator instance = new WarningLevelCalculator();
boolean expResult = false;
boolean result = instance.testCollisionPoint(collision);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setWarningLevelYellow method, of class WarningLevelCalculator.
*/
@Test
public void testSetWarningLevelYellow() {
System.out.println("setWarningLevelYellow");
Aircraft plane = null;
WarningLevelCalculator instance = new WarningLevelCalculator();
instance.setWarningLevelYellow(plane);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setWarningLevelOrange method, of class WarningLevelCalculator.
*/
@Test
public void testSetWarningLevelOrange() {
System.out.println("setWarningLevelOrange");
Aircraft plane = null;
WarningLevelCalculator instance = new WarningLevelCalculator();
instance.setWarningLevelOrange(plane);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of setWarningLevelRed method, of class WarningLevelCalculator.
*/
@Test
public void testSetWarningLevelRed() {
System.out.println("setWarningLevelRed");
Aircraft plane = null;
WarningLevelCalculator instance = new WarningLevelCalculator();
instance.setWarningLevelRed(plane);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
}