From 06a74e6e0384307862ba171ef8436a0ed23af767 Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Thu, 28 Mar 2002 01:59:45 +0000 Subject: [PATCH] the start of a testcase - currently contains nothing! ;) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272059 13f79535-47bb-0310-9956-ffa450edef68 --- .../lib/test/SimpleConvertersTestCase.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 proposal/myrmidon/src/test/org/apache/aut/converter/lib/test/SimpleConvertersTestCase.java diff --git a/proposal/myrmidon/src/test/org/apache/aut/converter/lib/test/SimpleConvertersTestCase.java b/proposal/myrmidon/src/test/org/apache/aut/converter/lib/test/SimpleConvertersTestCase.java new file mode 100644 index 000000000..47dfbfd2f --- /dev/null +++ b/proposal/myrmidon/src/test/org/apache/aut/converter/lib/test/SimpleConvertersTestCase.java @@ -0,0 +1,25 @@ +/* + * Copyright (C) The Apache Software Foundation. All rights reserved. + * + * This software is published under the terms of the Apache Software License + * version 1.1, a copy of which has been included with this distribution in + * the LICENSE.txt file. + */ +package org.apache.aut.converter.lib.test; + +import junit.framework.TestCase; + +/** + * A Unit test that is used to test all the simple converters in the lib directorys. + * + * @author Peter Donald + * @version $Revision$ $Date$ + */ +public class SimpleConvertersTestCase + extends TestCase +{ + public SimpleConvertersTestCase( final String name ) + { + super( name ); + } +}