Codebase list ruby-fxruby / f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9 test / TC_FXDialogBox.rb
f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9

Tree @f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9 (Download .tar.gz)

TC_FXDialogBox.rb @f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9raw · 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