mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
8155774: move code from ModuleTestBase to toolbox
Reviewed-by: ksrini, jlahoda
This commit is contained in:
parent
5950e361a2
commit
325a065aff
43 changed files with 455 additions and 385 deletions
|
@ -47,7 +47,7 @@ public class AbstractOrInnerClassServiceImplTest extends ModuleTestBase {
|
|||
}
|
||||
|
||||
@Test
|
||||
void testAbstractServiceImpl(Path base) throws Exception {
|
||||
public void testAbstractServiceImpl(Path base) throws Exception {
|
||||
Path src = base.resolve("src");
|
||||
tb.writeJavaFiles(src,
|
||||
"module m { provides p1.Service with p2.Impl; }",
|
||||
|
@ -68,7 +68,7 @@ public class AbstractOrInnerClassServiceImplTest extends ModuleTestBase {
|
|||
}
|
||||
|
||||
@Test
|
||||
void testInnerClassServiceImpl(Path base) throws Exception {
|
||||
public void testInnerClassServiceImpl(Path base) throws Exception {
|
||||
Path src = base.resolve("src");
|
||||
tb.writeJavaFiles(src,
|
||||
"module m { provides p1.Service with p2.Outer.Inner; }",
|
||||
|
@ -89,7 +89,7 @@ public class AbstractOrInnerClassServiceImplTest extends ModuleTestBase {
|
|||
}
|
||||
|
||||
@Test
|
||||
void testInnerInterfaceServiceImpl(Path base) throws Exception {
|
||||
public void testInnerInterfaceServiceImpl(Path base) throws Exception {
|
||||
Path src = base.resolve("src");
|
||||
tb.writeJavaFiles(src,
|
||||
"module m { provides p1.Service with p2.Outer.Inner; }",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue