donaldp 2002/09/20 03:00:05
Added: loader/src/test/org/apache/excalibur/policy/test
PolicyTestSuite.java
Log:
Add in template test suite
Revision Changes Path
1.1
jakarta-avalon-excalibur/loader/src/test/org/apache/excalibur/policy/test/PolicyTestSuite.java
Index: PolicyTestSuite.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.policy.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* A basic test suite that tests all the Policy package.
*/
public class PolicyTestSuite
{
public static Test suite()
{
final TestSuite suite = new TestSuite( "Policy Utilities" );
return suite;
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>