1
0
Fork 0

Creation of the main class and his test class

This commit is contained in:
Ethanell 2020-04-14 09:51:02 +02:00
parent 89aa870bc6
commit 092d080cdf
3 changed files with 15 additions and 0 deletions

View file

@ -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

View file

@ -0,0 +1,7 @@
package cvdatpjunit;
public class CVDATPJUnit {
public static void main(String[] args) {
}
}

View file

@ -0,0 +1,5 @@
package cvdatpjunit;
class CVDATPJUnitTest {
}