diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-07-24 17:59:45 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-07-24 17:59:45 +0100 |
| commit | 2bc23bdc7fe01fc5921be8e09f405a8a1fd7bd65 (patch) | |
| tree | 9df07f8aeba21f4fb91e23fcc8d1c7a4a57a42eb /examples/09-imports/output/java | |
| parent | c8baf035c5a1705b957931f56f9162125803e554 (diff) | |
Add Shared type
Diffstat (limited to 'examples/09-imports/output/java')
| -rw-r--r-- | examples/09-imports/output/java/.gitignore | 2 | ||||
| l--------- | examples/09-imports/output/java/pom.xml | 1 | ||||
| -rw-r--r-- | examples/09-imports/output/java/src/test/java/org/zwobble/example/LineTests.java | 15 |
3 files changed, 0 insertions, 18 deletions
diff --git a/examples/09-imports/output/java/.gitignore b/examples/09-imports/output/java/.gitignore deleted file mode 100644 index ff511d4..0000000 --- a/examples/09-imports/output/java/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/src/gen/ -/target/ diff --git a/examples/09-imports/output/java/pom.xml b/examples/09-imports/output/java/pom.xml deleted file mode 120000 index 445fa65..0000000 --- a/examples/09-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/09-imports/output/java/src/test/java/org/zwobble/example/LineTests.java b/examples/09-imports/output/java/src/test/java/org/zwobble/example/LineTests.java deleted file mode 100644 index c376b19..0000000 --- a/examples/09-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); - } -} |
