blob: 16bae78d46d637358ba036fa44c4fd3307a3efbb [file] [log] [blame]
/*
* Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.ejte.ccl.reporter;
/**
@Class: Test
@Description: Class holding One Test info.
@Author : Ramesh Mandava
@Last Modified :Initial creation By Ramesh on 10/24/2001
@Last Modified : By Ramesh on 1/20/2002 , For preserving order of entry of
testcases used a separate testCaseIdVector
*/
import java.util.Hashtable;
import java.util.Vector;
public class Test
{
private String id;
private String name;
private String description;
private String status;
private String statusDescription;
private String expected;
private String actual;
Hashtable testCaseHash;
Vector testCaseIdVector; // Added to preserve order of entry
public Test( String id, String name, String description )
{
this.id = id;
this.name= name;
this.description = description;
this.status = ReporterConstants.OPTIONAL;
this.statusDescription=ReporterConstants.OPTIONAL;
this.expected = null;
this.actual= null;
testCaseHash = new Hashtable();
testCaseIdVector= new Vector();
}
public Test( String id, String name )
{
this.id = id;
this.name= name;
this.description =ReporterConstants.NA ;
this.status = ReporterConstants.OPTIONAL;
this.statusDescription=ReporterConstants.OPTIONAL;
this.expected = null;
this.actual= null;
testCaseHash = new Hashtable();
testCaseIdVector= new Vector();
}
public Test( String id )
{
this.id = id;
this.name= ReporterConstants.NA;
this.description =ReporterConstants.NA ;
this.status = ReporterConstants.OPTIONAL;
this.statusDescription=ReporterConstants.OPTIONAL;
this.expected = null;
this.actual= null;
testCaseHash = new Hashtable();
testCaseIdVector= new Vector();
}
public void setStatus ( String status )
{
this.status = status;
}
public void setStatusDescription ( String statusDescription )
{
this.statusDescription = statusDescription;
this.expected=null;
this.actual =null;
}
public void setExpected( String expected )
{
this.expected = expected;
}
public void setActual( String actual )
{
this.actual = actual;
}
public String getId( )
{
return id;
}
public String getName( )
{
return name;
}
public String getDescription( )
{
return description;
}
public String getStatus( )
{
return status;
}
public String getStatusDescription( )
{
return statusDescription;
}
public String getExpected( )
{
return expected;
}
public String getActual( )
{
return actual;
}
public Vector getTestCaseIdVector( )
{
return testCaseIdVector;
}
public void setTestCaseIdVector( Vector tidVector)
{
testCaseIdVector = tidVector;
}
public Hashtable getTestCaseHash( )
{
return testCaseHash;
}
public void setTestCaseHash( Hashtable testCaseHash )
{
this.testCaseHash= testCaseHash;
}
public void addTestCase( TestCase testCase )
{
if ( testCaseHash.put( testCase.getId().trim(), testCase ) != null )
{
System.err.println(" Error? Test Case : " + testCase.getId().trim() + " already added. Overwriting the previous test case" );
}
testCaseIdVector.addElement( testCase.getId().trim() );
}
}