KlovReporter
KlovReporter is the client for Klov server, and supports both versions of Klov below:
- Community: http://klov.herokuapp.com
- Professional: http://klov-pro.herokuapp.com
Installation
ExtentKlovReporter is no longer part of the standard library. If you are using Klov 1.0+, use the below dependency.
Note: Version 5 does not support Klov versions 0.1.x, 0.2.x
To use the KlovReporter, you must supply a project name to uniquely identify the job your tests are running for. Additionally, the host/port of the Klov server and the MongoDB connection details are required to setup the reporter.
Usage with Extentreports
var klov = new ExtentKlovReporter("YourProjectName");
klov
.InitKlovServerConnection("http://klov-host:port")
.InitMongoDbConnection("mongodb-host", "mongodb-port");
var extent = new ExtentReports();
extent.AttachReporter(klov);