Codebase list ruby-fxruby / be7380ff-f6fb-45a6-86c3-8c455888b2ef/main test / TC_FXDialogBox.rb
be7380ff-f6fb-45a6-86c3-8c455888b2ef/main

Tree @be7380ff-f6fb-45a6-86c3-8c455888b2ef/main (Download .tar.gz)

TC_FXDialogBox.rb @be7380ff-f6fb-45a6-86c3-8c455888b2ef/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