Codebase list ruby-fxruby / 5c2d0227-fc30-4ad3-b307-ed5ef791dacb/main test / TC_FXDialogBox.rb
5c2d0227-fc30-4ad3-b307-ed5ef791dacb/main

Tree @5c2d0227-fc30-4ad3-b307-ed5ef791dacb/main (Download .tar.gz)

TC_FXDialogBox.rb @5c2d0227-fc30-4ad3-b307-ed5ef791dacb/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