Sha256: 6c218678f5b70f7263a5ca39d6691ddda16822d3a3285a672e0a466469285036
Contents?: true
Size: 1.46 KB
Versions: 4
Compression:
Stored size: 1.46 KB
Contents
require_relative '../../../reference_resolution_test' require_relative '../resource_list' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class PractitionerRoleReferenceResolutionTest < Inferno::Test include DaVinciPlanNetTestKit::ReferenceResolutionTest include ResourceList title 'MustSupport references within PractitionerRole resources are valid' description %( This test will attempt to read external references provided within elements marked as 'MustSupport', if any are available. It verifies that at least one external reference for each MustSupport Reference element can be accessed by the test client, and conforms to corresponding Plan Net profile. Elements which may provide external references include: * PractitionerRole.endpoint * PractitionerRole.healthcareService * PractitionerRole.location * PractitionerRole.organization * PractitionerRole.practitioner ) id :davinci_plan_net_v110_practitioner_role_reference_resolution_test def resource_type 'PractitionerRole' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:practitioner_role_resources] ||= {} end run do perform_reference_resolution_test(scratch_resources[:all]) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems