Codebase list ruby-fxruby / run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream test / TC_FXId.rb
run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream

Tree @run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstream (Download .tar.gz)

TC_FXId.rb @run/3d5a4e82-a43d-42a1-b45b-3cdbad1db042/upstreamraw · history · blame

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