Codebase list ruby-fxruby / 8c92b4fc-47dd-41e6-9b2a-451e389a318c/main test / TC_FXDialogBox.rb
8c92b4fc-47dd-41e6-9b2a-451e389a318c/main

Tree @8c92b4fc-47dd-41e6-9b2a-451e389a318c/main (Download .tar.gz)

TC_FXDialogBox.rb @8c92b4fc-47dd-41e6-9b2a-451e389a318c/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