1   /*
2    * $Id: DeployTaskTest.java,v 1.1 2004/12/15 14:18:17 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
8    */
9   package bexee.ant;
10  
11  /***
12   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:17 $
13   * @author Patric Fornasier
14   * @author Pawel Kowalski
15   */
16  public class DeployTaskTest extends BuildFileTest {
17  
18      public DeployTaskTest(String name) {
19          super(name);
20      }
21  
22      public void setUp() {
23          configureProject("src/test/deployTask.xml");
24      }
25  
26      /***
27       * This test has deliberately been disabled. It has been enabled only during
28       * development for debugging purposes, because it has too many dependencies
29       * (Admin, Manager, Axis, ...) to be run as a JUnit test.
30       */
31      public void _testDeploy() {
32          executeTarget("deploy");
33      }
34  }