# File test/test_params.rb, line 1402
    def init_arguments
      @attrs['document'] = 'Foo'
      @attrs['arguments'] = [
        'hi',                  # string
        nil,                   # password
        '<html>Hello world.</html>', # text
        0,                     # number
        /foo/,                 # regexp
        true,                  # bool
        'foo',                 # select
        'foo',                 # radio
        { 'foo'=> false,       # checkset
          'bar' => false,
          'baz' => false
        }
      ]
    end