From 092d080cdfd79ebc3d89cd587f0299412654cfcb Mon Sep 17 00:00:00 2001 From: CHARLAIX FLORIAN p1905458 Date: Tue, 14 Apr 2020 09:51:02 +0200 Subject: [PATCH] Creation of the main class and his test class --- README.md | 3 +++ src/cvdatpjunit/CVDATPJUnit.java | 7 +++++++ test/cvdatpjunit/CVDATPJUnitTest.java | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 src/cvdatpjunit/CVDATPJUnit.java create mode 100644 test/cvdatpjunit/CVDATPJUnitTest.java diff --git a/README.md b/README.md index ba7d5e2..fbf7517 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # TP JUnit CVDA > Florian Charlaix - G2S2 - 11905458 + +## Exercice 1 +* Création de la classe principale `CVDATPJUnit` et de sa classe de test `CVDATPJUnitTest` tous deux vides diff --git a/src/cvdatpjunit/CVDATPJUnit.java b/src/cvdatpjunit/CVDATPJUnit.java new file mode 100644 index 0000000..adeb8e5 --- /dev/null +++ b/src/cvdatpjunit/CVDATPJUnit.java @@ -0,0 +1,7 @@ +package cvdatpjunit; + +public class CVDATPJUnit { + public static void main(String[] args) { + + } +} diff --git a/test/cvdatpjunit/CVDATPJUnitTest.java b/test/cvdatpjunit/CVDATPJUnitTest.java new file mode 100644 index 0000000..0d0c55f --- /dev/null +++ b/test/cvdatpjunit/CVDATPJUnitTest.java @@ -0,0 +1,5 @@ +package cvdatpjunit; + +class CVDATPJUnitTest { + +}