Codebase list ruby-fxruby / 67480480-e2c2-46e3-bc0e-08ff055c738a/main test / TC_FXDialogBox.rb
67480480-e2c2-46e3-bc0e-08ff055c738a/main

Tree @67480480-e2c2-46e3-bc0e-08ff055c738a/main (Download .tar.gz)

TC_FXDialogBox.rb @67480480-e2c2-46e3-bc0e-08ff055c738a/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