Class TestDescriptorImpl
- java.lang.Object
-
- org.ow2.clif.storage.lib.filestorage.TestDescriptorImpl
-
- All Implemented Interfaces:
java.io.Serializable,TestDescriptor
public class TestDescriptorImpl extends java.lang.Object implements TestDescriptor
Gathers description elements of a test: test name (aka test run id), execution date- Author:
- Bruno Dillenseger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TestDescriptorImpl(java.io.File testDir)
-
Method Summary
All Methods Instance Methods Concrete 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 descriptorjava.lang.StringtoString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getName
public java.lang.String getName()
Description copied from interface:TestDescriptorGets the test run name of the test run represented by current test descriptor- Specified by:
getNamein interfaceTestDescriptor- Returns:
- the test run name of the test run represented by current test descriptor
-
getDate
public java.util.Date getDate()
Description copied from interface:TestDescriptorGets the test run initialization date of the test run represented by current test descriptor- Specified by:
getDatein interfaceTestDescriptor- Returns:
- the test run initialization date of the test run represented by current test descriptor
-
-