blob: 57c2fed3f545bdcdbd385ecf5b69ebc2eb65541f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 VMware Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* VMware Inc. - initial contribution
*******************************************************************************/
package org.eclipse.virgo.bundlor.commandline.internal.support;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
import org.eclipse.virgo.util.parser.manifest.ManifestContents;
public class StandardManifestTemplateFactoryTests {
private final StandardManifestTemplateFactory factory = new StandardManifestTemplateFactory();
@Test
public void manifestTemplatePath() {
ManifestContents template = this.factory.create("src/test/resources/test-template.mf");
assertNotNull(template);
}
@Test
public void manifestTemplateNull() {
ManifestContents template = this.factory.create(null);
assertNotNull(template);
}
}