Creation of the main class and his test class
This commit is contained in:
parent
89aa870bc6
commit
092d080cdf
3 changed files with 15 additions and 0 deletions
|
@ -1,2 +1,5 @@
|
||||||
# TP JUnit CVDA
|
# TP JUnit CVDA
|
||||||
> Florian Charlaix - G2S2 - 11905458
|
> Florian Charlaix - G2S2 - 11905458
|
||||||
|
|
||||||
|
## Exercice 1
|
||||||
|
* Création de la classe principale `CVDATPJUnit` et de sa classe de test `CVDATPJUnitTest` tous deux vides
|
||||||
|
|
7
src/cvdatpjunit/CVDATPJUnit.java
Normal file
7
src/cvdatpjunit/CVDATPJUnit.java
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
package cvdatpjunit;
|
||||||
|
|
||||||
|
public class CVDATPJUnit {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
5
test/cvdatpjunit/CVDATPJUnitTest.java
Normal file
5
test/cvdatpjunit/CVDATPJUnitTest.java
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
package cvdatpjunit;
|
||||||
|
|
||||||
|
class CVDATPJUnitTest {
|
||||||
|
|
||||||
|
}
|
Reference in a new issue