File tree Expand file tree Collapse file tree
src/test/java/software/amazon/awssdk/crt/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ public static void setupOnce() {
236236 /* The setup function will be run before every test */
237237 @ Before
238238 public void setup () {
239- System .out .println ("[TEST START] " + testName .getMethodName ());
239+ System .out .println ("[TEST START] " + this . getClass (). getName () + "#" + testName .getMethodName ());
240240 Log .log (Log .LogLevel .Debug , LogSubject .JavaCrtGeneral , "CrtTestFixture setup begin" );
241241
242242 // TODO this CrtTestContext should be removed as we are using System Properties
@@ -265,7 +265,7 @@ public void tearDown() {
265265 }
266266 }
267267 Log .log (Log .LogLevel .Debug , LogSubject .JavaCrtGeneral , "CrtTestFixture tearDown end" );
268- System .out .println ("[TEST END] " + testName .getMethodName ());
268+ System .out .println ("[TEST END] " + this . getClass (). getName () + "#" + testName .getMethodName ());
269269 }
270270
271271 protected TlsContext createTlsContextOptions (byte [] trustStore ) {
You can’t perform that action at this time.
0 commit comments