From e11540f98a484ce414f7cb214ecb36fbb21c25c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann-Ga=C3=ABl?= Date: Fri, 31 Aug 2018 14:45:45 +0000 Subject: [PATCH] Update AggregationTest.java The class should extend TestCase from the JUnit library to make it a real unit test. Then, the main method should become a testXXX method. --- sdm/src/java/association/AggregationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdm/src/java/association/AggregationTest.java b/sdm/src/java/association/AggregationTest.java index 2dbcfb0..09c4dd6 100644 --- a/sdm/src/java/association/AggregationTest.java +++ b/sdm/src/java/association/AggregationTest.java @@ -10,7 +10,7 @@ public static void main(String args[]) team.showAll(); team = null; System.out.println("Team deleted.\n"); - fed.showAll(); + fed.showAll(); // Why not show()? jo.showAll(); } }