FHIR Testing
0.1.0 - ci-build

FHIR Testing, published by NHO. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/costateixeira/fhirtesting/ and changes regularly. See the Directory of published versions

Example Binary: Gherkin script - Simple

    
Feature: Simple Tests

Scenario: Verify static JSON data
  * def response = 
    """
    {
      "name": "FHIR",
      "type": "Testing",
      "version": "0.1.0."
    }
    """

  And match response.name == 'FHIR'
  And match response.type == 'Testing'
  And match response.version == '0.1.0'