/*
* $Id: DeployTaskTest.java,v 1.1 2004/12/06 07:53:38 fornp1 Exp $
*
* Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
* Berne University of Applied Sciences
* School of Engineering and Information Technology
* All rights reserved.
*/
package bexee.ant;
/**
* @version $Revision: 1.1 $, $Date: 2004/12/06 07:53:38 $
* @author Patric Fornasier
* @author Pawel Kowalski
*/
public class DeployTaskTest extends BuildFileTest {
public DeployTaskTest(String name) {
super(name);
}
public void setUp() {
configureProject("src/test/deployTask.xml");
}
/**
* This test has deliberately been disabled. It has been enabled only during
* development for debugging purposes, because it has too many dependencies
* (Admin, Manager, Axis, ...) to be run as a JUnit test.
*/
public void _testDeploy() {
executeTarget("deploy");
}
}
|