Skip to content

Commit f57ecd7

Browse files
committed
Print class name in tests
1 parent 54d9686 commit f57ecd7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/software/amazon/awssdk/crt/test/CrtTestFixture.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)