Sha256: 4f820631249fabb852d2bd73ba31954d70fac30fb4de7458fb1bc5986ee7d7fe
Contents?: true
Size: 1.55 KB
Versions: 9
Compression:
Stored size: 1.55 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module USCoreTestKit module USCoreV610 class ServiceRequestPatientCategoryAuthoredSearchTest < Inferno::Test include USCoreTestKit::SearchTest title 'Server returns valid results for ServiceRequest search by patient + category + authored' description %( A server SHALL support searching by patient + category + authored on the ServiceRequest resource. This test will pass if resources are returned and match the search criteria. If none are returned, the test is skipped. [US Core Server CapabilityStatement](http://hl7.org/fhir/us/core//CapabilityStatement-us-core-server.html) ) id :us_core_v610_service_request_patient_category_authored_search_test input :patient_ids, title: 'Patient IDs', description: 'Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements' def self.properties @properties ||= SearchTestProperties.new( resource_type: 'ServiceRequest', search_param_names: ['patient', 'category', 'authored'], possible_status_search: true, token_search_params: ['category'], params_with_comparators: ['authored'] ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:service_request_resources] ||= {} end run do run_search_test end end end end
Version data entries
9 entries across 9 versions & 1 rubygems