Codebase list ruby-fxruby / e8f0877b-8d1b-412d-893e-c71bb32ba5fc/upstream/1.6.45+git20221125.1.7d76b2a test / TC_FXDialogBox.rb
e8f0877b-8d1b-412d-893e-c71bb32ba5fc/upstream/1.6.45+git20221125.1.7d76b2a

Tree @e8f0877b-8d1b-412d-893e-c71bb32ba5fc/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

TC_FXDialogBox.rb @e8f0877b-8d1b-412d-893e-c71bb32ba5fc/upstream/1.6.45+git20221125.1.7d76b2araw · 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