1
0
Fork 0

Creation of the Society test class

This commit is contained in:
KEZEL BENOIT p1907091 2020-04-02 11:11:56 +02:00
parent 0fece44edc
commit 68604e2e97

10
src/test/TestSociety.java Normal file
View file

@ -0,0 +1,10 @@
package test;
import input.Society;
public class TestSociety {
public static void main(String[] args) {
Society society1 = new Society("LeBonCoin");
System.out.println(society1.toString(null, null));
}
}