Package com.consol.citrus
Class TestCaseMetaInfo
- java.lang.Object
-
- com.consol.citrus.TestCaseMetaInfo
-
public class TestCaseMetaInfo extends Object
Test case meta information.- Author:
- Christoph Deppisch
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTestCaseMetaInfo.StatusStatus of testcase
-
Constructor Summary
Constructors Constructor Description TestCaseMetaInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthor()Get the test author.DategetCreationDate()Get the creation date.StringgetLastUpdatedBy()Get the author that recently updated this test case.DategetLastUpdatedOn()Get last updating date.TestCaseMetaInfo.StatusgetStatus()Get the status of this test case.voidsetAuthor(String author)Set the test author.voidsetCreationDate(Date creationDate)Set the creation date.voidsetLastUpdatedBy(String lastUpdatedBy)Set the author that recently updated this test case.voidsetLastUpdatedOn(Date lastUpdatedOn)Set last updating date.voidsetStatus(TestCaseMetaInfo.Status status)Set the status the this test case.
-
-
-
Method Detail
-
getAuthor
public String getAuthor()
Get the test author.- Returns:
- the author
-
setAuthor
public void setAuthor(String author)
Set the test author.- Parameters:
author- the author to set
-
getCreationDate
public Date getCreationDate()
Get the creation date.- Returns:
- the creationDate
-
setCreationDate
public void setCreationDate(Date creationDate)
Set the creation date.- Parameters:
creationDate- the creationDate to set
-
getLastUpdatedBy
public String getLastUpdatedBy()
Get the author that recently updated this test case.- Returns:
- the lastUpdatedBy
-
setLastUpdatedBy
public void setLastUpdatedBy(String lastUpdatedBy)
Set the author that recently updated this test case.- Parameters:
lastUpdatedBy- the lastUpdatedBy to set
-
getLastUpdatedOn
public Date getLastUpdatedOn()
Get last updating date.- Returns:
- the lastUpdatedOn
-
setLastUpdatedOn
public void setLastUpdatedOn(Date lastUpdatedOn)
Set last updating date.- Parameters:
lastUpdatedOn- the lastUpdatedOn to set
-
setStatus
public void setStatus(TestCaseMetaInfo.Status status)
Set the status the this test case.- Parameters:
status- the status to set
-
getStatus
public TestCaseMetaInfo.Status getStatus()
Get the status of this test case.- Returns:
- the status
-
-