Sha256: 73a2158f77b33de2b6e647e141e98b641dc6039074d2bb87cf0ee5421423076b
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class EndpointIdSearchTest < Inferno::Test include DaVinciPlanNetTestKit::SearchTest title 'Server returns valid results for Endpoint search by _id' description %( A server SHALL support searching by _id on the Endpoint 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_endpoint__id_search_test def self.properties @properties ||= SearchTestProperties.new( resource_type: 'Endpoint', search_param_names: ['_id'] ) 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 run_search_test end end end end
Version data entries
4 entries across 4 versions & 1 rubygems