Line | |
---|
1 | /* |
---|
2 | * To change this template, choose Tools | Templates |
---|
3 | * and open the template in the editor. |
---|
4 | */ |
---|
5 | |
---|
6 | package com.heuristiclab.services.administration; |
---|
7 | |
---|
8 | import org.junit.After; |
---|
9 | import org.junit.AfterClass; |
---|
10 | import org.junit.Before; |
---|
11 | import org.junit.BeforeClass; |
---|
12 | import org.junit.runner.RunWith; |
---|
13 | import org.junit.runners.Suite; |
---|
14 | |
---|
15 | /** |
---|
16 | * |
---|
17 | * @author MartinH |
---|
18 | */ |
---|
19 | @RunWith(Suite.class) |
---|
20 | @Suite.SuiteClasses({}) |
---|
21 | public 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.