Finance and Insurance Service (FAIS)
1.0.0 - trial-use International flag

This page is part of the IHE ITI Finance and Insurance Services (v1.0.0: Publication) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions

Binary: Testing Feature File for ITI 128

    
Feature: Test ITI-128 Transaction: Submit Claim
  Background:
    * url 'http://localhost/fhir'

  Rule: Re-process Claim Request and Response Messages initiated from a Claims Requestor to a Claims Manager

    Scenario: Re-process Claim without referenced content

      Given path 'Claim/$reprocess'
      When method post
      Then status 200
      And match $.resourceType = "ClaimResponse"
      And match $ contains status
      And match $ contains request
      And match $ contains outcome

    Scenario: Re-process Claim with referenced content in a bundle

      Given path 'Claim/$reprocess'
      When method post
      Then status 200
      And match $.resourceType == "Bundle"
      And match $.type == "collection"
      And match contains $.entry[?(@.resourceType == 'ClaimResponse' && @.status && @.request && @.outcome)]