Codebase list ruby-fxruby / 7a8991ee-17c2-4a1b-bf36-6ad5f8e3a999/main test / TC_FXId.rb
7a8991ee-17c2-4a1b-bf36-6ad5f8e3a999/main

Tree @7a8991ee-17c2-4a1b-bf36-6ad5f8e3a999/main (Download .tar.gz)

TC_FXId.rb @7a8991ee-17c2-4a1b-bf36-6ad5f8e3a999/mainraw · 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