Codebase list ruby-fxruby / a9506d6e-489e-43e9-a5f3-cb98c5292d43/main test / TC_FXMainWindow.rb
a9506d6e-489e-43e9-a5f3-cb98c5292d43/main

Tree @a9506d6e-489e-43e9-a5f3-cb98c5292d43/main (Download .tar.gz)

TC_FXMainWindow.rb @a9506d6e-489e-43e9-a5f3-cb98c5292d43/mainraw · history · blame

require 'test/unit'
require 'fox16'

class TC_FXMainWindow < Test::Unit::TestCase
  include Fox

  def test_nil_app_raises_argument_error
    assert_raise ArgumentError do
      FXMainWindow.new(nil, "title")
    end
  end

  def test_non_created_app_raises_runtime_error
    app = FXApp.new
    assert_raise RuntimeError do
      FXMainWindow.new(app, "title").create
    end
  end
end