Sha256: 2aaa597a9d7e280d93418e3260a34973b11fb6b7c09e179af1b64f6ddab76745
Contents?: true
Size: 386 Bytes
Versions: 17
Compression:
Stored size: 386 Bytes
Contents
require 'test/unit' require 'fox16' include Fox class TC_FXMainWindow < Test::Unit::TestCase 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
Version data entries
17 entries across 17 versions & 1 rubygems