View Javadoc

1   package org.ogf.saga.namespace;
2   
3   import org.junit.Before;
4   import org.junit.Test;
5   import org.ogf.saga.namespace.abstracts.AbstractData;
6   
7   /* ***************************************************
8    * *** Centre de Calcul de l'IN2P3 - Lyon (France) ***
9    * ***             http://cc.in2p3.fr/             ***
10   * ***************************************************
11   * File:   NSSetUpTest
12   * Author: Sylvain Reynaud (sreynaud@in2p3.fr)
13   * Date:   30 juin 2009
14   * ***************************************************
15   * Description:                                      */
16  /**
17   *
18   */
19  public abstract class SetUpTest extends AbstractData {
20      protected SetUpTest(String protocol) throws Exception {
21          super(protocol);
22      }
23  
24      @Before
25      public void setUp() {
26          // ignore
27      }
28  
29      @Test
30      public void test_setUp() throws Exception {
31          super.setUp();
32      }
33  }