donaldp 2002/06/14 00:22:10
Added:
containerkit/src/test/org/apache/excalibur/containerkit/kernel/test
DependencyGraphTestCase.java KernelTestSuite.java
Log:
Add in start of testcases for kernel stuff. Currently empty
Revision Changes Path
1.1
jakarta-avalon-excalibur/containerkit/src/test/org/apache/excalibur/containerkit/kernel/test/DependencyGraphTestCase.java
Index: DependencyGraphTestCase.java
===================================================================
/*
* Copyright 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.excalibur.containerkit.kernel.test;
import junit.framework.TestCase;
/**
* Basic unit tests for the DependencyGraph.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
*/
public final class DependencyGraphTestCase
extends TestCase
{
public DependencyGraphTestCase( final String name )
{
super( name );
}
public void testDummyTest()
{
//TODO: Write some damn tests!!!!
}
}
1.1
jakarta-avalon-excalibur/containerkit/src/test/org/apache/excalibur/containerkit/kernel/test/KernelTestSuite.java
Index: KernelTestSuite.java
===================================================================
/*
* Copyright 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.excalibur.containerkit.kernel.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* A basic test suite that tests all the IO package.
*/
public class KernelTestSuite
{
public static Test suite()
{
final TestSuite suite = new TestSuite( "Kernel Utilities" );
suite.addTest( new TestSuite( DependencyGraphTestCase.class ) );
return suite;
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>