Sha256: 9e6f55a882f13d3d10eb3f2d7b885f1f178c274076e5491242285ece78c81aca

Contents?: true

Size: 309 Bytes

Versions: 6

Compression:

Stored size: 309 Bytes

Contents

require 'test/unit'
require 'fox14'
require 'testcase'

include Fox

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

  def test_created?
    assert(!mainWindow.created?)
    theApp.create
    assert(mainWindow.created?)
    mainWindow.destroy
    assert(!mainWindow.created?)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fxruby-1.4.1 tests/TC_FXId.rb
fxruby-1.4.2 tests/TC_FXId.rb
fxruby-1.4.3 tests/TC_FXId.rb
fxruby-1.4.4 tests/TC_FXId.rb
fxruby-1.4.5 tests/TC_FXId.rb
fxruby-1.4.6 tests/TC_FXId.rb