Codebase list ruby-fxruby / ab38a889-2f90-4f3b-b9b1-656bf6d05522/upstream test / TC_FXDialogBox.rb
ab38a889-2f90-4f3b-b9b1-656bf6d05522/upstream

Tree @ab38a889-2f90-4f3b-b9b1-656bf6d05522/upstream (Download .tar.gz)

TC_FXDialogBox.rb @ab38a889-2f90-4f3b-b9b1-656bf6d05522/upstreamraw · 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