com.relevantcodes.extentreports.model.RunInstance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extentreports Show documentation
Show all versions of extentreports Show documentation
An open-source reporting library for Java, .Net and Ruby.
/*
* Copyright (c) 2015, Anshoo Arora (Relevant Codes). All rights reserved.
*
* Copyrights licensed under the New BSD License.
*
* See the accompanying LICENSE file for terms.
*/
package com.relevantcodes.extentreports.model;
import java.util.ArrayList;
public class RunInstance {
public RunInfo runInfo;
public ArrayList tests;
public SystemProperties systemInfo;
public ArrayList screenCapture;
public void init() {
tests = new ArrayList();
screenCapture = new ArrayList();
}
private RunInstance() { }
private static class Instance {
static final RunInstance INSTANCE = new RunInstance();
}
public static RunInstance getInstance() {
return Instance.INSTANCE;
}
}