Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java')
-rw-r--r--test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java b/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java
deleted file mode 100644
index 0c0e3015..00000000
--- a/test/org.eclipse.epp.packaging.core.test/src/org/eclipse/epp/packaging/core/configuration/CommandLineParser_Test.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Innoopract Informationssysteme GmbH
- * 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:
- * Innoopract - initial API and implementation
- *******************************************************************************/
-package org.eclipse.epp.packaging.core.configuration;
-
-import junit.framework.Assert;
-import junit.framework.TestCase;
-
-/** Test class */
-public class CommandLineParser_Test extends TestCase {
-
- public void testParsesConfigFile() throws Exception {
- ICommands command = ArgumentParser.parse( new String[]{
- "eclipsepackager.xml"} ); //$NON-NLS-1$
- Assert.assertEquals( "eclipsepackager.xml", command.getConfigurationFile().getName() ); //$NON-NLS-1$
- }
-
- public void testDefaultTasks() {
- ICommands command = ArgumentParser.parse( new String[]{
- "eclipsepackager.xml"} ); //$NON-NLS-1$
- Assert.assertTrue( command.mustDo( Task.CHECK ) );
- Assert.assertTrue( command.mustDo( Task.INSTALL ) );
- Assert.assertTrue( command.mustDo( Task.BUILD ) );
- }
-
- public void testParsesTasks() throws Exception {
- ICommands command = ArgumentParser.parse( new String[]{
- "eclipsepackager.xml", "check", "install"} ); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- Assert.assertTrue( command.mustDo( Task.CHECK ) );
- Assert.assertTrue( command.mustDo( Task.INSTALL ) );
- }
-
- public void testParsesAllTasks() throws Exception {
- ICommands command = ArgumentParser.parse( new String[]{
- "eclipsepackager.xml", "check", "install", "build"} ); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
- Assert.assertTrue( command.mustDo( Task.CHECK ) );
- Assert.assertTrue( command.mustDo( Task.INSTALL ) );
- Assert.assertTrue( command.mustDo( Task.BUILD ) );
- }
-
- public void testBadArgumentType() throws Exception {
- try {
- ArgumentParser.parse( null );
- fail();
- } catch( IllegalArgumentException e ) {
- // expected exception
- }
- }
-} \ No newline at end of file

Back to the top