Codebase list ruby-fxruby / 0934bbd0-cd2e-4349-844d-928b8d23484a/main test / TC_FXId.rb
0934bbd0-cd2e-4349-844d-928b8d23484a/main

Tree @0934bbd0-cd2e-4349-844d-928b8d23484a/main (Download .tar.gz)

TC_FXId.rb @0934bbd0-cd2e-4349-844d-928b8d23484a/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