public function testCreateApplicationTestSuite()
 {
     $shell = $this->getMock('Magento\\Framework\\Shell', [], [], '', false);
     $bootstrap = new \Magento\TestFramework\Performance\Bootstrap($this->appBootstrap, $this->_getBaseFixtureDir() . '/config_dist');
     $application = $bootstrap->createApplication($shell);
     $this->assertInstanceOf('Magento\\TestFramework\\Application', $application);
     $handler = $this->getMockForAbstractClass('Magento\\TestFramework\\Performance\\Scenario\\HandlerInterface');
     $testSuite = $bootstrap->createTestSuite($application, $handler);
     $this->assertInstanceOf('Magento\\TestFramework\\Performance\\Testsuite', $testSuite);
 }