Sha256: ff3d67ec49188006de89e647118468b3a9c39ff29c3cc69ed6b0f733c0ff54bc
Contents?: true
Size: 1.64 KB
Versions: 4
Compression:
Stored size: 1.64 KB
Contents
require_relative '../../../search_test' require_relative '../../../generator/group_metadata' module DaVinciPlanNetTestKit module DaVinciPlanNetV110 class PractitionerRoleNoParamsSearchTest < Inferno::Test include DaVinciPlanNetTestKit::SearchTest title 'Client can identify instances of Plan-Net PractitionerRole on the server' description %( This test gathers instances expected to conform to the target profile for use in the rest of the tests in this sequence. It will perform an unparameterized search and/or read instance ids provided by the tester as described in the "Instance Gathering" section of the group description above. ) id :davinci_plan_net_v110_practitioner_role_no_params_search_test input :davinci_plan_net_v110_practitioner_role_no_params_search_test_ids, title: 'ids of Plan-Net PractitionerRole instances', optional: true, description: 'Required if parameterless searches are not being used for instance gathering.' input :no_param_search input :max_instances input :max_pages def self.properties @properties ||= SearchTestProperties.new( first_search: true, resource_type: 'PractitionerRole', test_post_search: false ) 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 run_search_no_params_test(davinci_plan_net_v110_practitioner_role_no_params_search_test_ids) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems