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