public function testSugarPath()
 {
     $sugarDir = __DIR__ . '/fake_sugar';
     $app = new Application(new NullLogger(), $sugarDir);
     $this->assertInstanceOf('Inet\\SugarCRM\\Application', $app);
     $this->assertEquals(realpath($sugarDir), $app->getPath());
     $this->assertTrue($app->isValid());
     $this->assertTrue($app->isInstalled());
     $app = new Application(new NullLogger(), __DIR__ . '/invalid_sugar');
     $this->assertFalse($app->isInstalled());
 }