Codebase list ruby-fxruby / run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream test / TC_FXDialogBox.rb
run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream

Tree @run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream (Download .tar.gz)

TC_FXDialogBox.rb @run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/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