Skip to content
Snippets Groups Projects
TC_FXId.rb 306 B
Newer Older
  • Learn to ignore specific revisions
  • require 'test/unit'
    require 'fox16'
    require 'testcase'
    
    include Fox
    
    class TC_FXId < TestCase
      def setup
        super(self.class.name)
      end
    
      def test_created?
        assert(!mainWindow.created?)
        app.create
        assert(mainWindow.created?)
        mainWindow.destroy
        assert(!mainWindow.created?)
      end
    end