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