# File test/test_DocumentTable.rb, line 367
    def test_modify_show_args
      entry = { :show_args => false }
      @DocumentTable.entry = entry
      assert_equal(false, @DocumentTable.show_args)
      @DocumentTable.show_args = true
      assert_equal(true, @DocumentTable.show_args)
      assert_equal(true, entry[:show_args])
      @DocumentTable.show_args = false
      assert_equal(false, @DocumentTable.show_args)
      assert_equal(false, entry[:show_args])
    end