Codebase list ruby-fxruby / 7de4f4dd-d47c-40ec-9420-f566611aaf23/main test / TC_FXDialogBox.rb
7de4f4dd-d47c-40ec-9420-f566611aaf23/main

Tree @7de4f4dd-d47c-40ec-9420-f566611aaf23/main (Download .tar.gz)

TC_FXDialogBox.rb @7de4f4dd-d47c-40ec-9420-f566611aaf23/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