View Javadoc

1   package org.apache.maven.plugin.resources.remote.it;
2   
3   import org.apache.maven.plugin.resources.remote.it.support.BootstrapInstaller;
4   
5   import junit.framework.TestCase;
6   
7   public abstract class AbstractIT
8       extends TestCase
9   {
10      public void setUp()
11          throws Exception
12      {
13          BootstrapInstaller.install();
14          
15          super.setUp();
16      }
17  }