Codebase list ruby-fxruby / upstream/1.6.42 test / TC_FXDialogBox.rb
upstream/1.6.42

Tree @upstream/1.6.42 (Download .tar.gz)

TC_FXDialogBox.rb @upstream/1.6.42raw · 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