diff options
author | Teddy Wing | 2023-04-23 16:11:14 +0200 |
---|---|---|
committer | Teddy Wing | 2023-04-23 16:11:14 +0200 |
commit | 99b8daaad15477fc6ea3e893edc3840751208ab4 (patch) | |
tree | ce6430ab17c4db9a0e09fc4200f7f8bf7b447221 /src/test/java | |
parent | 448321902c1db9360e2d4c6c6edc1f0b1b087095 (diff) | |
download | pdf-form-replace-font2-99b8daaad15477fc6ea3e893edc3840751208ab4.tar.bz2 |
Generate a Maven project structure
I followed the Maven Getting Started
(https://maven.apache.org/guides/getting-started/index.html) guide to
set up a project structure so I could use it to manage dependencies. I
picked the 'maven-archetype-simple' archetype
(https://maven.apache.org/archetypes/maven-archetype-simple/).
This code was generated with the following command and interactive
prompts:
$ mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-simple -DarchetypeVersion=1.4
Define value for property 'groupId': com.teddywing.pdf-form-replace-font2
Define value for property 'artifactId': pdf-form-replace-font2
Define value for property 'version' 1.0-SNAPSHOT: : 0.0.1-SNAPSHOT
Define value for property 'package' com.teddywing.pdf-form-replace-font2: :
Confirm properties configuration:
groupId: com.teddywing.pdf-form-replace-font2
artifactId: pdf-form-replace-font2
version: 0.0.1-SNAPSHOT
package: com.teddywing.pdf-form-replace-font2
Y: :
Diffstat (limited to 'src/test/java')
-rw-r--r-- | src/test/java/com/teddywing/pdf-form-replace-font2/AppTest.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test/java/com/teddywing/pdf-form-replace-font2/AppTest.java b/src/test/java/com/teddywing/pdf-form-replace-font2/AppTest.java new file mode 100644 index 0000000..f87d6c2 --- /dev/null +++ b/src/test/java/com/teddywing/pdf-form-replace-font2/AppTest.java @@ -0,0 +1,38 @@ +package com.teddywing.pdf-form-replace-font2; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} |