blob: 10f3f879685072e12b25c4c2f4ff71e9ce4c949b (
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 Current Search Query Class
* @author Willem Dalton
**/
@Tag("Model-tier")
public class CurrentSearchQueryTest {
// @Test
// void testReset()
// {
// CurrentSearchQuery query
// }
}
|