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.48 test/TC_FXId.rb
fxruby-1.6.48-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.48-x64-mingw-ucrt test/TC_FXId.rb
fxruby-1.6.48-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.47 test/TC_FXId.rb
fxruby-1.6.47-x64-mingw-ucrt test/TC_FXId.rb
fxruby-1.6.47-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.47-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.46 test/TC_FXId.rb
fxruby-1.6.46-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.46-x64-mingw-ucrt test/TC_FXId.rb
fxruby-1.6.46-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.45 test/TC_FXId.rb
fxruby-1.6.45-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.45-x64-mingw-ucrt test/TC_FXId.rb
fxruby-1.6.45-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.44 test/TC_FXId.rb
fxruby-1.6.44-x64-mingw32 test/TC_FXId.rb
fxruby-1.6.44-x86-mingw32 test/TC_FXId.rb
fxruby-1.6.43 test/TC_FXId.rb