1 | public SOSTest(String s) {↵ | | 1 | public MSVSSTest(String s) {↵
|
2 | super(s);↵ | | 2 | super(s);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * The JUnit setup method↵ | | 5 | * The JUnit setup method↵
|
6 | *↵ | | 6 | *↵
|
7 | * @throws Exception↵ | | 7 | * @throws Exception↵
|
8 | */↵ | | 8 | */↵
|
9 | protected void setUp()↵ | | 9 | protected void setUp()↵
|
10 | throws Exception {↵ | | 10 | throws Exception {↵
|
11 | project = new Project();↵ | | 11 | project = new Project();↵
|
12 | project.setBasedir(".");↵ | | 12 | project.setBasedir(".");↵
|
13 | }↵ | | 13 | }↵
|
|
14 | /**↵ | | 14 | /**↵
|
15 | * The teardown method for JUnit↵ | | 15 | * The teardown method for JUnit↵
|
16 | *↵ | | 16 | *↵
|
17 | * @throws Exception↵ | | 17 | * @throws Exception↵
|
18 | */↵ | | 18 | */↵
|
19 | protected void tearDown()↵ | | 19 | protected void tearDown()↵
|
20 | throws Exception {↵ | | 20 | throws Exception {↵
|
21 | File file = new File(project.getBaseDir(), LOCAL_PATH);↵ | | 21 | File file = new File(project.getBaseDir(), LOCAL_PATH);↵
|
22 | if (file.exists()) {↵ | | 22 | if (file.exists()) {↵
|
23 | file.delete(); | | 23 | file.delete();
|