Sha256: 46a8090487eeee83163b606b1b2f10666cd3d5e94a40de7cdcdc5e719c070ad9
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
require_relative '../../../must_support_test' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class EndpointMustSupportTest < Inferno::Test include DaVinciPlanNetTestKit::MustSupportTest title 'All must support elements are provided in the Endpoint resources returned' description %( Plan Net Responders SHALL be capable of populating all data elements as part of the query results as specified by the Plan Net Server Capability Statement. This test will look through the Endpoint resources found previously for the following must support elements: * Endpoint.address * Endpoint.connectionType * Endpoint.contact * Endpoint.contact.system * Endpoint.contact.value * Endpoint.extension:endpoint-usecase * Endpoint.managingOrganization * Endpoint.name * Endpoint.payloadMimeType * Endpoint.payloadType * Endpoint.status ) id :davinci_plan_net_v110_endpoint_must_support_test def resource_type 'Endpoint' end def self.metadata @metadata ||= Generator::GroupMetadata.new(YAML.load_file(File.join(__dir__, 'metadata.yml'), aliases: true)) end def scratch_resources scratch[:endpoint_resources] ||= {} end run do perform_must_support_test(all_scratch_resources) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems