diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-08-10 10:19:49 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-08-10 10:19:49 +0100 |
| commit | 5113f2157c5aa257ad7ebf555cb6a551701d169a (patch) | |
| tree | 8ddaee09f6c43b0529b2203f9e662a028fb5fcc0 /examples/14-imports/output/java | |
| parent | 5d41166750e0f05da436bf30c7a642749f7a71c5 (diff) | |
Add generic struct example without any outputs
Diffstat (limited to 'examples/14-imports/output/java')
| -rw-r--r-- | examples/14-imports/output/java/.gitignore | 2 | ||||
| l--------- | examples/14-imports/output/java/pom.xml | 1 | ||||
| -rw-r--r-- | examples/14-imports/output/java/src/test/java/org/zwobble/example/LineTests.java | 15 |
3 files changed, 0 insertions, 18 deletions
diff --git a/examples/14-imports/output/java/.gitignore b/examples/14-imports/output/java/.gitignore deleted file mode 100644 index ff511d4..0000000 --- a/examples/14-imports/output/java/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/src/gen/ -/target/ diff --git a/examples/14-imports/output/java/pom.xml b/examples/14-imports/output/java/pom.xml deleted file mode 120000 index 445fa65..0000000 --- a/examples/14-imports/output/java/pom.xml +++ /dev/null @@ -1 +0,0 @@ -../../../templates/java-junit/pom.xml
\ No newline at end of file diff --git a/examples/14-imports/output/java/src/test/java/org/zwobble/example/LineTests.java b/examples/14-imports/output/java/src/test/java/org/zwobble/example/LineTests.java deleted file mode 100644 index c376b19..0000000 --- a/examples/14-imports/output/java/src/test/java/org/zwobble/example/LineTests.java +++ /dev/null @@ -1,15 +0,0 @@ -package org.zwobble.example; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import org.junit.jupiter.api.Test; -import org.zwobble.example.types.line.Line; -import org.zwobble.example.types.point.Point; - -public class LineTests { - @Test - public void canConstructLine() { - Point start = new Point(10, 25); - Point end = new Point(25, 10); - Line line = new Line(start, end); - } -} |
