Sha256: 34fc97accf206b69830f07c62d552482ee0857bcd2bc078f2905ad56888c2d6d
Contents?: true
Size: 2 KB
Versions: 3
Compression:
Stored size: 2 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class PractitionerRoleForwardChainLocationAddressCitySearchTest < Inferno::Test include DaVinciPlanNetTestKit::SearchTest title 'Server capable of forward chaining with location.address-city' description %( A server SHALL be capable of supporting chaining for address-city through the search parameter location for the Practitioner_role profile. This test will perform a search with location.address-city using a value in the address-city element on an instance found during _include tests executed previously during this sequence. To validate the returned instances, the test will perform a search on the Location resource type using the same address-city search parameter and value and check that this search contains any instances referenced through the location element of instances returned by the tested search. ) id :davinci_plan_net_v110_forward_chain_location_address_city_search_test def properties @properties ||= SearchTestProperties.new( resource_type: 'PractitionerRole', search_param_names: [], chain_param: 'address-city', chain_param_base: 'location', additional_resource_type: 'Location' ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'))) end def self.additional_metadata @additional_metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, '..', 'location', 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:practitioner_role_resources] ||= {} end def scratch_additional_resources scratch[:location_resources] ||= {} end run do run_forward_chain_search_test end end end end
Version data entries
3 entries across 3 versions & 1 rubygems