blob: 2b0a0a3e336969d87067c266b206e471eacf95f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 EclipseSource Muenchen GmbH.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
******************************************************************************/
package org.eclipse.emf.emfstore.fuzzy;
/**
*
* Class to get a connection between a test and a specific run of it.
*
* @author Julian Sommerfeldt
*
*/
public class Test {
private String name;
private int seedCount;
/**
* @param name The name of the test.
* @param seedCount The count (run) of the test.
*/
public Test(String name, int seedCount) {
this.name = name;
this.seedCount = seedCount;
}
/**
* @return The name of the test.
*/
public String getName() {
return name;
}
/**
* @return The run of this test.
*/
public int getSeedCount() {
return seedCount;
}
}