Sha256: 898d2b3056ef6b378578fd3a0eb84c1168e324b5502f7a468d29d573b94bfc58

Contents?: true

Size: 377 Bytes

Versions: 56

Compression:

Stored size: 377 Bytes

Contents

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

class TC_FXId < Fox::TestCase
  include Fox

  def setup
    super(self.class.name)
  end

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

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
fxruby-1.6.37-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.37.rc1 test/TC_FXId.rb
fxruby-1.6.37.rc1-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.37.rc1-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.36 test/TC_FXId.rb
fxruby-1.6.36-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.36-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.35-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.35-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.35 test/TC_FXId.rb
fxruby-1.6.34-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.34-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.34 test/TC_FXId.rb
fxruby-1.6.33-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.33-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.33 test/TC_FXId.rb