yuleil commented on code in PR #8: URL: https://github.com/apache/incubator-teaclave-java-tee-sdk/pull/8#discussion_r1033061938
########## test/host/src/main/java/org/apache/teaclave/javasdk/test/host/TestEnclaveAES.java: ########## @@ -22,13 +22,21 @@ import org.apache.teaclave.javasdk.host.EnclaveType; import org.apache.teaclave.javasdk.test.common.AESSealedTest; import org.apache.teaclave.javasdk.test.common.AESService; +import org.junit.After; +import org.junit.Before; import org.junit.Test; import java.util.Iterator; import static org.junit.jupiter.api.Assertions.*; public class TestEnclaveAES { + @Before + public final void before() { System.out.println("enter test case: " + this.getClass().getName()); } Review Comment: `junit` will print these messages automatically, so we don't need to print them explicitly. For example: ``` Running Test Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec - in Test ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@teaclave.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@teaclave.apache.org For additional commands, e-mail: dev-h...@teaclave.apache.org