mirror of https://github.com/apache/archiva.git
fix unit test for RepositoryServletProxiedPassthroughTest : call setup and tearDown
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1135141 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
22ae2288b1
commit
51abcfbcbb
|
@ -25,6 +25,8 @@ import com.meterware.httpunit.GetMethodWebRequest;
|
|||
import com.meterware.httpunit.HttpUnitOptions;
|
||||
import com.meterware.httpunit.WebRequest;
|
||||
import com.meterware.httpunit.WebResponse;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
|
@ -46,6 +48,20 @@ public class RepositoryServletProxiedPassthroughTest
|
|||
|
||||
private static final String PATH_ASC = "org/apache/archiva/test/1.0/test-1.0.jar.asc";
|
||||
|
||||
@Before
|
||||
public void setup()
|
||||
throws Exception
|
||||
{
|
||||
super.setUp();
|
||||
}
|
||||
|
||||
@After
|
||||
public void tearDown()
|
||||
throws Exception
|
||||
{
|
||||
super.tearDown();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetProxiedManagedNewerSha1()
|
||||
throws Exception
|
||||
|
|
Loading…
Reference in New Issue