blob: b3c232d6b5e90f5c954a633e9735261523fbb420 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Test Script Test</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* TestScript is a resource that specifies a suite of tests against a FHIR server implementation to determine compliance against the FHIR specification.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.TestScriptTest#getName <em>Name</em>}</li>
* <li>{@link org.hl7.fhir.TestScriptTest#getDescription <em>Description</em>}</li>
* <li>{@link org.hl7.fhir.TestScriptTest#getMetadata <em>Metadata</em>}</li>
* <li>{@link org.hl7.fhir.TestScriptTest#getAction <em>Action</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getTestScriptTest()
* @model extendedMetaData="name='TestScript.Test' kind='elementOnly'"
* @generated
*/
public interface TestScriptTest extends BackboneElement {
/**
* Returns the value of the '<em><b>Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The name of this test used for tracking/logging purposes by test engines.
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' containment reference.
* @see #setName(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getTestScriptTest_Name()
* @model containment="true"
* extendedMetaData="kind='element' name='name' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getName();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptTest#getName <em>Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' containment reference.
* @see #getName()
* @generated
*/
void setName(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Description</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A short description of the test used by test engines for tracking and reporting purposes.
* <!-- end-model-doc -->
* @return the value of the '<em>Description</em>' containment reference.
* @see #setDescription(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getTestScriptTest_Description()
* @model containment="true"
* extendedMetaData="kind='element' name='description' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDescription();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptTest#getDescription <em>Description</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' containment reference.
* @see #getDescription()
* @generated
*/
void setDescription(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Metadata</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Capabilities that must exist and are assumed to function correctly on the FHIR server being tested.
* <!-- end-model-doc -->
* @return the value of the '<em>Metadata</em>' containment reference.
* @see #setMetadata(TestScriptMetadata)
* @see org.hl7.fhir.FhirPackage#getTestScriptTest_Metadata()
* @model containment="true"
* extendedMetaData="kind='element' name='metadata' namespace='##targetNamespace'"
* @generated
*/
TestScriptMetadata getMetadata();
/**
* Sets the value of the '{@link org.hl7.fhir.TestScriptTest#getMetadata <em>Metadata</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Metadata</em>' containment reference.
* @see #getMetadata()
* @generated
*/
void setMetadata(TestScriptMetadata value);
/**
* Returns the value of the '<em><b>Action</b></em>' containment reference list.
* The list contents are of type {@link org.hl7.fhir.TestScriptAction1}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Action would contain either an operation or an assertion.
* <!-- end-model-doc -->
* @return the value of the '<em>Action</em>' containment reference list.
* @see org.hl7.fhir.FhirPackage#getTestScriptTest_Action()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='action' namespace='##targetNamespace'"
* @generated
*/
EList<TestScriptAction1> getAction();
} // TestScriptTest