Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/AdministrationService/test/com/heuristiclab/services/administration/AdministrationserviceTestSuite.java @ 6062

Last change on this file since 6062 was 6062, checked in by mholper, 13 years ago

added Administrationservice as Netbeansproject #1441

File size: 736 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package com.heuristiclab.services.administration;
7
8import org.junit.After;
9import org.junit.AfterClass;
10import org.junit.Before;
11import org.junit.BeforeClass;
12import org.junit.runner.RunWith;
13import org.junit.runners.Suite;
14
15/**
16 *
17 * @author MartinH
18 */
19@RunWith(Suite.class)
20@Suite.SuiteClasses({})
21public class AdministrationserviceTestSuite {
22
23    @BeforeClass
24    public static void setUpClass() throws Exception {
25    }
26
27    @AfterClass
28    public static void tearDownClass() throws Exception {
29    }
30
31    @Before
32    public void setUp() throws Exception {
33    }
34
35    @After
36    public void tearDown() throws Exception {
37    }
38
39}
Note: See TracBrowser for help on using the repository browser.