Codebase list ruby-fxruby / debian/1.6.29-0kali3 test / TC_FXId.rb
debian/1.6.29-0kali3

Tree @debian/1.6.29-0kali3 (Download .tar.gz)

TC_FXId.rb @debian/1.6.29-0kali3raw · 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?
    app.create
    assert mainWindow.created?, "main window should be created after call to FXApp#create"
    mainWindow.destroy
    assert !mainWindow.created?
  end
end