Revision: 6320
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6320&view=rev
Author: manningr
Date: 2011-07-27 22:25:13 +0000 (Wed, 27 Jul 2011)
Log Message:
-----------
Throws exception upon construction ... no need for validate method.
Modified Paths:
--------------
trunk/sql12/plugins/dbcopy/src/test/java/net/sourceforge/squirrel_sql/plugins/dbcopy/cli/CommandLineArgumentProcessorTest.java
Modified: trunk/sql12/plugins/dbcopy/src/test/java/net/sourceforge/squirrel_sql/plugins/dbcopy/cli/CommandLineArgumentProcessorTest.java
===================================================================
--- trunk/sql12/plugins/dbcopy/src/test/java/net/sourceforge/squirrel_sql/plugins/dbcopy/cli/CommandLineArgumentProcessorTest.java 2011-07-27 22:23:52 UTC (rev 6319)
+++ trunk/sql12/plugins/dbcopy/src/test/java/net/sourceforge/squirrel_sql/plugins/dbcopy/cli/CommandLineArgumentProcessorTest.java 2011-07-27 22:25:13 UTC (rev 6320)
@@ -1,7 +1,6 @@
package net.sourceforge.squirrel_sql.plugins.dbcopy.cli;
import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertTrue;
import org.apache.commons.cli.ParseException;
import org.junit.After;
@@ -58,12 +57,6 @@
}
@Test
- public void testValidate()
- {
- assertTrue(classUnderTest.isValid());
- }
-
- @Test
public void testGetSourceAliasName() throws ParseException
{
assertEquals(SOURCE_SESSION_NAME, classUnderTest.getSourceAliasName());
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|