String manifestName = "prod-manifest.yml"; //$NON-NLS-1$
URL entry = ServerTestsActivator.getContext().getBundle().getEntry(MANIFEST_LOCATION);
IFileStore fs = EFS.getStore(URIUtil.toURI(FileLocator.toFileURL(entry).getPath().concat(manifestName)));
ManifestParseTree manifest = ManifestUtils.parse(fs.getParent(), fs);
ManifestParseTree applications = manifest.get("applications"); //$NON-NLS-1$
assertEquals(1, applications.getChildren().size());
ManifestParseTree application = applications.get(0);
assertEquals("512M", application.get("memory").getValue()); //$NON-NLS-1$//$NON-NLS-2$
assertEquals("2", application.get("instances").getValue()); //$NON-NLS-1$//$NON-NLS-2$
assertEquals("example.com", application.get("domain").getValue()); //$NON-NLS-1$//$NON-NLS-2$
assertEquals(".", application.get("path").getValue()); //$NON-NLS-1$//$NON-NLS-2$
}