Sha256: f1d9928160fe2edaae434a8f3d438e7aa6b7f599356395808cd41e5b775b3c6f

Contents?: true

Size: 363 Bytes

Versions: 8

Compression:

Stored size: 363 Bytes

Contents

require 'test/unit'
require 'fox16'
require 'testcase'

include Fox

class TC_FXId < TestCase
  def setup
    super(self.class.name)
  end

  def test_created?
    assert !mainWindow.created?
    app.create
    assert mainWindow.created?, "main window should be created after call to FXApp#create"
    mainWindow.destroy
    assert !mainWindow.created?
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fxruby-1.6.20-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.20-x86-linux test/TC_FXId.rb
fxruby-1.6.20 test/TC_FXId.rb
fxruby-1.6.20-universal-darwin-10 test/TC_FXId.rb
fxruby-1.6.19-x86-mingw32 tests/TC_FXId.rb
fxruby-1.6.19-universal-darwin-9 tests/TC_FXId.rb
fxruby-1.6.19-x86-mswin32-60 tests/TC_FXId.rb
fxruby-1.6.19 tests/TC_FXId.rb