From 68dbb2b7eaae8379bcb185428e46e083a2bf6ecb Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Wed, 15 May 2024 18:59:22 -0400 Subject: Initial commit --- src/it/simple-it/pom.xml | 34 ++++++++++++++++++++++++++++++++++ src/it/simple-it/verify.groovy | 3 +++ 2 files changed, 37 insertions(+) create mode 100644 src/it/simple-it/pom.xml create mode 100644 src/it/simple-it/verify.groovy (limited to 'src/it/simple-it') diff --git a/src/it/simple-it/pom.xml b/src/it/simple-it/pom.xml new file mode 100644 index 0000000..0b7e415 --- /dev/null +++ b/src/it/simple-it/pom.xml @@ -0,0 +1,34 @@ + + + 4.0.0 + + com.ashardalon.it + simple-it + 1.0-SNAPSHOT + + A simple IT verifying the basic use case. + + + UTF-8 + + + + + + @project.groupId@ + @project.artifactId@ + @project.version@ + + + touch + validate + + touch + + + + + + + diff --git a/src/it/simple-it/verify.groovy b/src/it/simple-it/verify.groovy new file mode 100644 index 0000000..7b307c7 --- /dev/null +++ b/src/it/simple-it/verify.groovy @@ -0,0 +1,3 @@ +File touchFile = new File( basedir, "target/touch.txt" ); + +assert touchFile.isFile() -- cgit v1.2.3