All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.uncommons.reportng.dto.SuiteConfigurationDTO Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package org.uncommons.reportng.dto;

import java.util.Set;

import org.testng.ITestResult;

public class SuiteConfigurationDTO {
	
	private Set before;
	private Set after;
	
	public SuiteConfigurationDTO() {
	}
	
	public SuiteConfigurationDTO(Set before, Set after) {
		setBefore(before);
		setAfter(after);
	}
	
	public Set getBefore() {
		return before;
	}
	
	public void setBefore(Set before) {
		this.before = before;
	}
	
	public Set getAfter() {
		return after;
	}
	
	public void setAfter(Set after) {
		this.after = after;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy