1 package org.itracker.model;
2 import static org.junit.Assert.*;
3
4 import org.junit.After;
5 import org.junit.Before;
6 import org.junit.Test;
7
8 public class IssueSearchQueryTest {
9 private IssueSearchQuery iss;
10
11
12 @Test
13 public void testToString(){
14 assertNotNull("toString", iss.toString());
15 }
16
17
18 @Before
19 public void setUp() throws Exception {
20 iss = new IssueSearchQuery();
21 }
22
23 @After
24 public void tearDown() throws Exception {
25 iss = null;
26 }
27
28 }