# File test/test_control.rb, line 82
    def list(name)
      @list_call += 1
      @list_last_name = name
      if (@properties[name]) then
        assert_instance_of(Array, @properties[name])
        return @properties[name].dup
      else
        return Array.new
      end
    end