1   /*
2    * $Id: ScopeImplTest.java,v 1.1 2004/12/15 14:18:15 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
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       * @see TestCase#setUp()
25       */
26      protected void setUp() throws Exception {
27          super.setUp();
28          scope = new ScopeImpl();
29      }
30  
31      /*
32       * @see TestCase#tearDown()
33       */
34      protected void tearDown() throws Exception {
35          super.tearDown();
36          scope = null;
37      }
38  
39      //***************************************************/
40      // test
41      //***************************************************/
42  
43      public final void testDefaultValues() {
44          assertEquals(false, scope.isSuppressJoinFailure());
45      }
46  
47  }