in src/main/java/com/microsoft/appcenter/event/EventReporter.java [48:57]
private String getParameters(Description description) {
if (description == null) {
throw new RuntimeException("Unable to get test information. Make sure the test class includes a @Rule:\n" +
" @Rule\n" +
" public ReportHelper reportHelper = Factory.getReportHelper();");
}
Matcher m = paramsFinder.matcher(description.getMethodName());
return m.find() ? m.group(1) : "";
}