[Practicalxml-commits] SF.net SVN: practicalxml:[122] branches/dev-1.1/src/test/java/net/sf/ practi
Brought to you by:
kdgregory
|
From: Auto-Generated S. C. M. <pra...@li...> - 2009-09-08 14:55:40
|
Revision: 122
http://practicalxml.svn.sourceforge.net/practicalxml/?rev=122&view=rev
Author: kdgregory
Date: 2009-09-08 14:55:08 +0000 (Tue, 08 Sep 2009)
Log Message:
-----------
introduce AbstractConversionTestCase
Modified Paths:
--------------
branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/bean/AbstractBeanConverterTestCase.java
Added Paths:
-----------
branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/AbstractConversionTestCase.java
Added: branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/AbstractConversionTestCase.java
===================================================================
--- branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/AbstractConversionTestCase.java (rev 0)
+++ branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/AbstractConversionTestCase.java 2009-09-08 14:55:08 UTC (rev 122)
@@ -0,0 +1,39 @@
+// Copyright 2008-2009 severally by the contributors
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package net.sf.practicalxml.converter;
+
+import net.sf.practicalxml.AbstractTestCase;
+
+
+/**
+ * A place to put common code for the conversion tests.
+ */
+public class AbstractConversionTestCase
+extends AbstractTestCase
+{
+ public AbstractConversionTestCase(String testName)
+ {
+ super(testName);
+ }
+
+//----------------------------------------------------------------------------
+// Support Code
+//----------------------------------------------------------------------------
+
+
+//----------------------------------------------------------------------------
+// Assertions
+//----------------------------------------------------------------------------
+}
Property changes on: branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/AbstractConversionTestCase.java
___________________________________________________________________
Added: svn:executable
+ *
Modified: branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/bean/AbstractBeanConverterTestCase.java
===================================================================
--- branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/bean/AbstractBeanConverterTestCase.java 2009-09-08 14:43:34 UTC (rev 121)
+++ branches/dev-1.1/src/test/java/net/sf/practicalxml/converter/bean/AbstractBeanConverterTestCase.java 2009-09-08 14:55:08 UTC (rev 122)
@@ -26,8 +26,8 @@
import junit.framework.Assert;
-import net.sf.practicalxml.AbstractTestCase;
import net.sf.practicalxml.DomUtil;
+import net.sf.practicalxml.converter.AbstractConversionTestCase;
/**
@@ -36,7 +36,7 @@
* instrospected.
*/
public abstract class AbstractBeanConverterTestCase
-extends AbstractTestCase
+extends AbstractConversionTestCase
{
protected AbstractBeanConverterTestCase(String name)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|