From 993e1f2bea9782cad3fefdaabc96a6b1fb3540b7 Mon Sep 17 00:00:00 2001
From: arnaudlabourel <arnaud.labourel@univ-amu.fr>
Date: Fri, 14 Oct 2022 09:12:18 +0200
Subject: [PATCH] Corrected files in order to pass checkstyle for tests

---
 src/test/java/TestMyClass.java | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/test/java/TestMyClass.java b/src/test/java/TestMyClass.java
index 075e422..61b1a98 100644
--- a/src/test/java/TestMyClass.java
+++ b/src/test/java/TestMyClass.java
@@ -1,10 +1,14 @@
+import static org.assertj.core.api.Assertions.assertThat;
+
 import org.junit.jupiter.api.Test;
-import static org.assertj.core.api.Assertions.*;
 
+/**
+ * A template class for testing with assertJ.
+ */
 public class TestMyClass {
 
   @Test
-  void testTrue(){
+  void testTrue() {
     assertThat(true).isTrue();
   }
 
-- 
GitLab