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 { + +}