# File test/test_sample.rb, line 148
    def test_filter_args
      assert_equal([ [ 'string',   'string',   :string,   'hi' ],
                     [ 'password', 'password', :password, nil ],
                     [ 'text',     'text',     :text,     '<html>Hello world.</html>' ],
                     [ 'integer',  'integer',  :integer,  0 ],
                     [ 'float',    'float',    :float,    0.0 ],
                     [ 'regexp',   'regexp',   :regexp,   /foo/ ],
                     [ 'boolean',  'boolean',  :bool,     true ],
                     [ 'select',   'select',   :select,   %w[ foo bar baz ] ],
                     [ 'radio',    'radio',    :radio,    %w[ foo bar baz ] ],
                     [ 'checkset', 'checkset', :checkset,
                       [ [ 'foo', true  ],
                         [ 'bar', false ],
                         [ 'baz', false ]
                       ]
                     ],
                   ], @ParameterSampleFilter.filter_args)
    end