Codebase list ruby-fxruby / 0bd958a8-dc25-4dc6-88ad-0eea1021b47d/main test / TC_FXDialogBox.rb
0bd958a8-dc25-4dc6-88ad-0eea1021b47d/main

Tree @0bd958a8-dc25-4dc6-88ad-0eea1021b47d/main (Download .tar.gz)

TC_FXDialogBox.rb @0bd958a8-dc25-4dc6-88ad-0eea1021b47d/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