1
2
3
4
5
6
7
8
9 package bexee.model.activity;
10
11 import org.jmock.MockObjectTestCase;
12
13 import bexee.model.activity.impl.TerminateImpl;
14
15 /***
16 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:16 $
17 * @author Pawel Kowalski
18 */
19 public class TerminateImplTest extends MockObjectTestCase {
20
21 private TerminateImpl terminate = null;
22
23
24
25
26 protected void setUp() throws Exception {
27 super.setUp();
28 terminate = new TerminateImpl();
29 }
30
31
32
33
34 protected void tearDown() throws Exception {
35 super.tearDown();
36 terminate = null;
37 }
38
39 //***************************************************/
40
41 //***************************************************/
42
43 public final void testDefaultValues() {
44 assertEquals(false, terminate.isSuppressJoinFailure());
45 }
46 }