com.teamscale.report.jacoco.dump.Dump Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of report-generator Show documentation
Show all versions of report-generator Show documentation
Utilities for generating JaCoCo and Testwise Coverage reports
/*-------------------------------------------------------------------------+
| |
| Copyright (c) 2009-2018 CQSE GmbH |
| |
+-------------------------------------------------------------------------*/
package com.teamscale.report.jacoco.dump;
import org.jacoco.core.data.ExecutionDataStore;
import org.jacoco.core.data.SessionInfo;
/** All data received in one dump. */
public class Dump {
/** The session info. */
public final SessionInfo info;
/** The execution data store. */
public final ExecutionDataStore store;
/** Constructor. */
public Dump(SessionInfo info, ExecutionDataStore store) {
this.info = info;
this.store = store;
}
}