Sha256: 4c7c714622b638587d89c47a17ec802e5d7db0d597ae9d1e6810088ea210aeaa
Contents?: true
Size: 1.51 KB
Versions: 6
Compression:
Stored size: 1.51 KB
Contents
require_relative '../../../reference_resolution_test' require_relative '../resource_list' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class InsurancePlanReferenceResolutionTest < Inferno::Test include DaVinciPlanNetTestKit::ReferenceResolutionTest include ResourceList title 'MustSupport references within InsurancePlan 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: * InsurancePlan.administeredBy * InsurancePlan.coverageArea * InsurancePlan.endpoint * InsurancePlan.identifier.assigner * InsurancePlan.network * InsurancePlan.ownedBy * InsurancePlan.plan.coverageArea ) id :davinci_plan_net_v110_insurance_plan_reference_resolution_test def resource_type 'InsurancePlan' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:insurance_plan_resources] ||= {} end run do perform_reference_resolution_test(scratch_resources[:all]) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems