mirror of https://github.com/apache/archiva.git
fix junit for RepositoryServletProxiedMetadataLocalOnlyTest
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1135187 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1a5b1ab654
commit
748a97c62f
|
@ -19,6 +19,8 @@ package org.apache.maven.archiva.webdav;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
|
@ -30,6 +32,20 @@ public class RepositoryServletProxiedMetadataLocalOnlyTest
|
|||
extends AbstractRepositoryServletProxiedMetadataTestCase
|
||||
{
|
||||
|
||||
@Before
|
||||
public void setup()
|
||||
throws Exception
|
||||
{
|
||||
super.setUp();
|
||||
}
|
||||
|
||||
@After
|
||||
public void tearDown()
|
||||
throws Exception
|
||||
{
|
||||
super.tearDown();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetProxiedSnapshotVersionMetadataLocalOnly()
|
||||
throws Exception
|
||||
|
|
Loading…
Reference in New Issue