Codebase list ruby-fxruby / run/e0d51cbb-e718-4249-9d88-9ac77d2a88f9/main test / TC_FXDialogBox.rb
run/e0d51cbb-e718-4249-9d88-9ac77d2a88f9/main

Tree @run/e0d51cbb-e718-4249-9d88-9ac77d2a88f9/main (Download .tar.gz)

TC_FXDialogBox.rb @run/e0d51cbb-e718-4249-9d88-9ac77d2a88f9/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