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.ScopeImpl;
14
15 /***
16 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:15 $
17 * @author Pawel Kowalski
18 */
19 public class ScopeImplTest extends MockObjectTestCase {
20
21 private ScopeImpl scope = null;
22
23
24
25
26 protected void setUp() throws Exception {
27 super.setUp();
28 scope = new ScopeImpl();
29 }
30
31
32
33
34 protected void tearDown() throws Exception {
35 super.tearDown();
36 scope = null;
37 }
38
39 //***************************************************/
40
41 //***************************************************/
42
43 public final void testDefaultValues() {
44 assertEquals(false, scope.isSuppressJoinFailure());
45 }
46
47 }