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

com.qaprosoft.zafira.models.push.TestRunStatisticPush Maven / Gradle / Ivy

package com.qaprosoft.zafira.models.push;

import com.qaprosoft.zafira.models.dto.TestRunStatistics;

public class TestRunStatisticPush extends AbstractPush
{
	private TestRunStatistics testRunStatistics;

	public TestRunStatisticPush(TestRunStatistics testRunStatistics)
	{
		super(Type.TEST_RUN_STATISTICS);
		this.testRunStatistics = testRunStatistics;
	}

	public TestRunStatistics getTestRunStatistics()
	{
		return testRunStatistics;
	}

	public void setTestRunStatistics(TestRunStatistics testRunStatistics)
	{
		this.testRunStatistics = testRunStatistics;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy