-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#91] Automaticylly add cute module for unittests including a module-…
…info.java
- Loading branch information
Tobias Stamann
committed
Apr 10, 2024
1 parent
689d27f
commit 545629f
Showing
4 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
integration-test/java9/test/src/test/resources/testcases/unitTest/Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package io.toolisticon.cute.integrationtest.javanine; | ||
|
||
import io.toolisticon.cute.PassIn; | ||
|
||
@PassIn | ||
public class Test { | ||
|
||
public static void testCall() { | ||
|
||
} | ||
|
||
public static void secondTestCall(String testClass) { | ||
|
||
} | ||
|
||
|
||
} | ||
|
5 changes: 5 additions & 0 deletions
5
integration-test/java9/test/src/test/resources/testcases/unitTest/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module io.toolisticon.cute.integrationtest.javanine { | ||
exports io.toolisticon.cute.integrationtest.javanine; | ||
requires cute; | ||
} | ||
|