/*
* SalomeTMF is a Test Management Framework
* Copyright (C) 2005 France Telecom R&D
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @author Fayal SOUGRATI
*
* Contact: mikael.marche@rd.francetelecom.com
*/
package org.objectweb.salome_tmf.api.api2ihm.campTest;
/**
* TestSuiteFamily : Classe qui dfinit un type form par le triplet (test,suite,famille)
* INTERET : pour une campagne de test, permet de connaitre la suite et la famille d'un test, des tests
* differents pouvant avoir le meme nom, mais dans des suites ou familles differentes
*/
public class TestSuiteFamily {
// Nom du test
String testName;
// Nom de la suite de test
String suiteName;
// Nom de la famille de test
String familyName;
/**
* Constructeur
*/
public TestSuiteFamily() {
testName = new String();
suiteName = new String();
familyName = new String();
}
/**
* Selecteur pour le champ "familyName"
* @return
*/
public String getFamilyName() {
return familyName;
}
/**
* Selecteur pour le champ "suiteName"
* @return
*/
public String getSuiteName() {
return suiteName;
}
/**
* Selecteur pour le champ "testName"
* @return
*/
public String getTestName() {
return testName;
}
/**
* Accesseur pour le champ "familyName"
* @param family
*/
public void setFamilyName(String family) {
familyName = family;
}
/**
* Accesseur pour le champ "suiteName"
* @param suite
*/
public void setSuiteName(String suite) {
suiteName = suite;
}
/**
* Accesseur pour le champ "testName"
* @param string
*/
public void setTestName(String test) {
testName = test;
}
}
|