Skip to content
Snippets Groups Projects
Commit 2ffeb31d authored by brinn's avatar brinn
Browse files

change: mark two tests as "slow"

SVN: 7064
parent 3cf09da3
No related branches found
No related tags found
No related merge requests found
...@@ -142,7 +142,7 @@ public class SelfTestTest ...@@ -142,7 +142,7 @@ public class SelfTestTest
SelfTest.check(mockCopier, incomingStore, bufferStore, incomingStore); SelfTest.check(mockCopier, incomingStore, bufferStore, incomingStore);
} }
@Test(expectedExceptions = ConfigurationFailureException.class) @Test(expectedExceptions = ConfigurationFailureException.class, groups = "slow")
public void testContainingPaths() public void testContainingPaths()
{ {
final File illegalBufferDirectory = new File(incomingDirectory, "temp"); final File illegalBufferDirectory = new File(incomingDirectory, "temp");
...@@ -150,7 +150,7 @@ public class SelfTestTest ...@@ -150,7 +150,7 @@ public class SelfTestTest
SelfTest.check(mockCopier, incomingStore, illegalBufferStore, outgoingStore); SelfTest.check(mockCopier, incomingStore, illegalBufferStore, outgoingStore);
} }
@Test(expectedExceptions = ConfigurationFailureException.class) @Test(expectedExceptions = ConfigurationFailureException.class, groups = "slow")
public void testNonExistentPaths() public void testNonExistentPaths()
{ {
final File nonExistentIncomingDirectory = new File(workingDirectory, "data"); final File nonExistentIncomingDirectory = new File(workingDirectory, "data");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment