From 41540dbd53650836d21aca96354d0f887153eb96 Mon Sep 17 00:00:00 2001 From: Xavier Fontanet Date: Thu, 20 Jun 2024 14:04:20 +0200 Subject: [PATCH] add Maven and first UT class --- pom.xml | 34 +++++++++++++++++++ .../codingtests/marsrover/MarsRoverTest.java | 4 +++ 2 files changed, 38 insertions(+) create mode 100644 pom.xml create mode 100644 src/test/java/cat/hack3/codingtests/marsrover/MarsRoverTest.java diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..114f2be --- /dev/null +++ b/pom.xml @@ -0,0 +1,34 @@ + + + 4.0.0 + + cat.hack3.codingtests + wallapop-backend-test + 1.0-SNAPSHOT + + + 17 + 17 + + + + + org.testng + testng + 7.6.1 + + + org.slf4j + slf4j-api + 1.7.36 + + + org.slf4j + slf4j-simple + 1.7.5 + + + + \ No newline at end of file diff --git a/src/test/java/cat/hack3/codingtests/marsrover/MarsRoverTest.java b/src/test/java/cat/hack3/codingtests/marsrover/MarsRoverTest.java new file mode 100644 index 0000000..fd53108 --- /dev/null +++ b/src/test/java/cat/hack3/codingtests/marsrover/MarsRoverTest.java @@ -0,0 +1,4 @@ +package cat.hack3.codingtests.marsrover; + +public class MarsRoverTest { +}