Revision: 5823
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5823&view=rev
Author: manningr
Date: 2010-08-21 18:00:42 +0000 (Sat, 21 Aug 2010)
Log Message:
-----------
Initial changes to convert from Ant build to Maven build
Added Paths:
-----------
trunk/sql12/plugins/sqlbookmark/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmark/SQLBookmarkPluginTest.java
Removed Paths:
-------------
trunk/sql12/plugins/sqlbookmarks/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmarks/SQLBookmarkPluginTest.java
Copied: trunk/sql12/plugins/sqlbookmark/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmark/SQLBookmarkPluginTest.java (from rev 5821, trunk/sql12/plugins/sqlbookmarks/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmarks/SQLBookmarkPluginTest.java)
===================================================================
--- trunk/sql12/plugins/sqlbookmark/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmark/SQLBookmarkPluginTest.java (rev 0)
+++ trunk/sql12/plugins/sqlbookmark/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmark/SQLBookmarkPluginTest.java 2010-08-21 18:00:42 UTC (rev 5823)
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2008 Rob Manning
+ * man...@us...
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+package net.sourceforge.squirrel_sql.plugins.sqlbookmarks;
+
+import net.sourceforge.squirrel_sql.client.plugin.AbstractPluginTest;
+import net.sourceforge.squirrel_sql.client.plugin.DatabaseProductVersionData;
+import net.sourceforge.squirrel_sql.plugins.sqlbookmark.SQLBookmarkPlugin;
+
+import org.junit.After;
+import org.junit.Before;
+
+
+public class SQLBookmarkPluginTest extends AbstractPluginTest implements DatabaseProductVersionData
+{
+ @Before
+ public void setUp() throws Exception
+ {
+ classUnderTest = new SQLBookmarkPlugin();
+ }
+
+ @After
+ public void tearDown() throws Exception
+ {
+ classUnderTest = null;
+ }
+
+}
Deleted: trunk/sql12/plugins/sqlbookmarks/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmarks/SQLBookmarkPluginTest.java
===================================================================
--- trunk/sql12/plugins/sqlbookmarks/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmarks/SQLBookmarkPluginTest.java 2010-08-21 17:58:25 UTC (rev 5822)
+++ trunk/sql12/plugins/sqlbookmarks/src/test/java/net/sourceforge/squirrel_sql/plugins/sqlbookmarks/SQLBookmarkPluginTest.java 2010-08-21 18:00:42 UTC (rev 5823)
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 2008 Rob Manning
- * man...@us...
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-package net.sourceforge.squirrel_sql.plugins.sqlbookmarks;
-
-import net.sourceforge.squirrel_sql.client.plugin.AbstractPluginTest;
-import net.sourceforge.squirrel_sql.client.plugin.DatabaseProductVersionData;
-import net.sourceforge.squirrel_sql.plugins.sqlbookmark.SQLBookmarkPlugin;
-
-import org.junit.After;
-import org.junit.Before;
-
-
-public class SQLBookmarkPluginTest extends AbstractPluginTest implements DatabaseProductVersionData
-{
- @Before
- public void setUp() throws Exception
- {
- classUnderTest = new SQLBookmarkPlugin();
- }
-
- @After
- public void tearDown() throws Exception
- {
- classUnderTest = null;
- }
-
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|