Codebase list ruby-fxruby / afc95297-b715-46f2-80bf-e29cc3a2b06b/main test / TC_FXDialogBox.rb
afc95297-b715-46f2-80bf-e29cc3a2b06b/main

Tree @afc95297-b715-46f2-80bf-e29cc3a2b06b/main (Download .tar.gz)

TC_FXDialogBox.rb @afc95297-b715-46f2-80bf-e29cc3a2b06b/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