Package org.ow2.clif.storage.api
Interface TestDescriptor
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
TestDescriptorImpl
public interface TestDescriptor extends java.io.SerializableThis interface specifies methods to be implemented by a test run descriptor, whose role is to designate a given test run.- Author:
- Bruno Dillenseger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.DategetDate()Gets the test run initialization date of the test run represented by current test descriptorjava.lang.StringgetName()Gets the test run name of the test run represented by current test descriptor
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the test run name of the test run represented by current test descriptor- Returns:
- the test run name of the test run represented by current test descriptor
-
getDate
java.util.Date getDate()
Gets the test run initialization date of the test run represented by current test descriptor- Returns:
- the test run initialization date of the test run represented by current test descriptor
-
-