Sha256: 6abfe8fd27179276adb305c4c11d817ab95d2580a954f0e899df9048c2252fa5
Contents?: true
Size: 1.22 KB
Versions: 4
Compression:
Stored size: 1.22 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class HealthcareServiceNameSearchTest < Inferno::Test include DaVinciPlanNetTestKit::SearchTest title 'Server returns valid results for HealthcareService search by name' description %( A server SHALL support searching by name on the HealthcareService resource. This test will pass if resources are returned and match the search criteria. If none are returned, the test is skipped. [Plan Net Server CapabilityStatement](http://hl7.org/fhir/us/davinci-pdex-plan-net/STU1.1/CapabilityStatement/plan-net) ) id :davinci_plan_net_v110_healthcare_service_name_search_test def self.properties @properties ||= SearchTestProperties.new( resource_type: 'HealthcareService', search_param_names: ['name'] ) end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:healthcare_service_resources] ||= {} end run do run_search_test end end end end
Version data entries
4 entries across 4 versions & 1 rubygems