# File test/test_document.rb, line 321
    def test_set_filter_option
      @factory.add_filter(self)
      @factory.set_filter_option('test_filter', :test_message, "Hello world.")
      assert_equal(1, @set_filter_option_call)
      assert_equal(:test_message, @set_filter_option_last_name)
      assert_equal("Hello world.", @set_filter_option_last_value)
    end