blob: 7538ba5bb71319fc5e7f1b2abb8872006597ac90 (
plain) (
blame)
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
|
package design.model.coursesearch;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.assertFalse;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import design.model.course_search.*;
import design.model.Course;
/** Unit Tests for the Club class.
* @author Willem Dalton
**/
@Tag("Model-tier")
public class CourseListTest {
@Test
void testConstructor()
{
CourseList testList = new CourseList();
}
}
|