We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e76419 commit 14d52e0Copy full SHA for 14d52e0
src/main/java/com/frameworkium/tests/internal/BaseTest.java
@@ -98,7 +98,9 @@ public static void initialiseNewScreenshotCapture(Method testMethod) {
98
String testID = "n/a";
99
try {
100
testID = testMethod.getName();
101
- } catch (NullPointerException e) {}
+ } catch (NullPointerException e) {
102
+ logger.debug("No test method defined.");
103
+ }
104
105
testID = testMethod.getAnnotation(Issue.class).value();
106
} catch (NullPointerException e) {
0 commit comments