Codebase list ruby-fxruby / 213220e0-2171-4079-ab36-278a01a5d0f6/main test / TC_FXDialogBox.rb
213220e0-2171-4079-ab36-278a01a5d0f6/main

Tree @213220e0-2171-4079-ab36-278a01a5d0f6/main (Download .tar.gz)

TC_FXDialogBox.rb @213220e0-2171-4079-ab36-278a01a5d0f6/mainraw · history · blame

require 'test/unit'
require 'fox16'

class TC_FXDialogBox < Test::Unit::TestCase
  include Fox

  def test_nil_app_raises_argument_error
    assert_raise ArgumentError do
      FXDialogBox.new(nil, "title")
    end
  end
end