From 68604e2e9716abeabaabd274296c77f569c4ce2f Mon Sep 17 00:00:00 2001 From: KEZEL BENOIT p1907091 Date: Thu, 2 Apr 2020 11:11:56 +0200 Subject: [PATCH] Creation of the Society test class --- src/test/TestSociety.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/test/TestSociety.java diff --git a/src/test/TestSociety.java b/src/test/TestSociety.java new file mode 100644 index 0000000..15535fe --- /dev/null +++ b/src/test/TestSociety.java @@ -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)); + } +}