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 d7ae15c commit 046c611Copy full SHA for 046c611
src/main/java/com/aventstack/extentreports/reporter/ExtentKlovReporter.java
@@ -99,9 +99,16 @@ public class ExtentKlovReporter extends ConfigurableReporter {
99
}
100
101
/**
102
- * Initializes the KlovReporter
+ * Initializes the KlovReporter with the project name and default report name
103
+ *
104
+ * <p>
105
+ * The reportName will be created using the current timestamp
106
107
+ * @param projectName Name of the project
108
109
*/
- public ExtentKlovReporter() {
110
+ public ExtentKlovReporter(String projectName) {
111
+ this.projectName = projectName;
112
113
114
0 commit comments