Codebase list ruby-fxruby / 824235e0-ab15-44a9-89b9-f5cf6891976b/main test / TC_FXDialogBox.rb
824235e0-ab15-44a9-89b9-f5cf6891976b/main

Tree @824235e0-ab15-44a9-89b9-f5cf6891976b/main (Download .tar.gz)

TC_FXDialogBox.rb @824235e0-ab15-44a9-89b9-f5cf6891976b/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