8155774: move code from ModuleTestBase to toolbox

Reviewed-by: ksrini, jlahoda
This commit is contained in:
Jonathan Gibbons 2016-05-02 16:17:39 -07:00
parent 5950e361a2
commit 325a065aff
43 changed files with 455 additions and 385 deletions

View file

@ -47,7 +47,7 @@ public class MOptionTest extends ModuleTestBase {
}
@Test
void testOneModule(Path base) throws Exception {
public void testOneModule(Path base) throws Exception {
Path src = base.resolve("src");
Path m1 = src.resolve("m1");
Path build = base.resolve("build");
@ -112,7 +112,7 @@ public class MOptionTest extends ModuleTestBase {
}
@Test
void testNoOutputDir(Path base) throws Exception {
public void testNoOutputDir(Path base) throws Exception {
Path src = base.resolve("src");
Path m1 = src.resolve("m1");
Path build = base.resolve("build");
@ -135,7 +135,7 @@ public class MOptionTest extends ModuleTestBase {
}
@Test
void testNoModuleSourcePath(Path base) throws Exception {
public void testNoModuleSourcePath(Path base) throws Exception {
Path src = base.resolve("src");
Path m1 = src.resolve("m1");
Path build = base.resolve("build");
@ -158,7 +158,7 @@ public class MOptionTest extends ModuleTestBase {
}
@Test
void testMultiModule(Path base) throws Exception {
public void testMultiModule(Path base) throws Exception {
Path src = base.resolve("src");
Path m1 = src.resolve("m1");
Path m2 = src.resolve("m2");