View Javadoc

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 WorkflowScriptTest {
9   	private WorkflowScript wst;
10  	
11  	@Test
12  	public void testToString(){
13  		assertNotNull("toString", wst.toString());
14  	}
15  		
16  	@Before
17      public void setUp() throws Exception {
18  		wst = new WorkflowScript();
19      }
20  	
21  	@After
22  	public void tearDown() throws Exception {
23  		wst = null;
24  	}
25  
26  }