# File test/test_properties.rb, line 116
    def test_list_type_check
      params = @properties.params('string')
      params['string'] = 'Hello world.'
      @properties.set_params(params)
      assert_exception(RuntimeError) {
        @properties.list('string')
      }
    end