# File test_format.rb, line 213
  def test_recursive_exceptions
    fmt = Format.new($from_perl) 
    assert_raises(FormatException, "Should have thrown an exception") {
      #assert_exception(FormatException, "Should have thrown an exception") {
      fmt.setTop(fmt)
    }
  end