mirror of https://github.com/apache/archiva.git
fix unit test for RepositoryServletProxiedTimestampedSnapshotPolicyTest : call setup and tearDown
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1135142 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
51abcfbcbb
commit
1d66415cae
|
@ -25,6 +25,8 @@ import com.meterware.httpunit.WebRequest;
|
||||||
import com.meterware.httpunit.WebResponse;
|
import com.meterware.httpunit.WebResponse;
|
||||||
|
|
||||||
import org.apache.maven.archiva.policies.SnapshotsPolicy;
|
import org.apache.maven.archiva.policies.SnapshotsPolicy;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -38,6 +40,20 @@ public class RepositoryServletProxiedTimestampedSnapshotPolicyTest
|
||||||
extends AbstractRepositoryServletProxiedTestCase
|
extends AbstractRepositoryServletProxiedTestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setup()
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
super.setUp();
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown()
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
super.tearDown();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetProxiedSnapshotsArtifactPolicyAlwaysManagedNewer()
|
public void testGetProxiedSnapshotsArtifactPolicyAlwaysManagedNewer()
|
||||||
throws Exception
|
throws Exception
|
||||||
|
|
Loading…
Reference in New Issue