# File test/test_sample.rb, line 80
    def setup
      super

      @sample = Rucy::ParameterSampleFilter.new('hi',  # string
                                                nil,   # password
                                                '<html>Hello world.</html>', # text
                                                0,     # number
                                                /foo/, # regexp
                                                true,  # bool
                                                'foo', # select
                                                'foo', # radio
                                                { 'foo' => true, 'bar' => false, 'baz' => false } # checkset
                                                )
      @doc = Rucy::FilterDocument.new(self, @sample)
    end