Skip to content
Snippets Groups Projects
Commit cef7fc98 authored by tpylak's avatar tpylak
Browse files

minor: mark slow tests

SVN: 20671
parent 3a79b751
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ public class TableMap<K, E> implements Iterable<E>
E elem = tryGet(key);
if (elem == null)
{
throw new IllegalStateException("No value for teh specified key found: " + key);
throw new IllegalStateException("No value for the specified key found: " + key);
}
return elem;
}
......
......@@ -422,7 +422,7 @@ public class DatasetDownloadServletTest
context.assertIsSatisfied();
}
@Test
@Test(groups = "slow")
public void testDoGetThumbnail() throws Exception
{
BufferedImage image = new BufferedImage(100, 200, BufferedImage.TYPE_INT_RGB);
......
......@@ -225,7 +225,7 @@ public class DataSetFileOperationsManagerTest extends AbstractFileSystemTestCase
* --< LOCAL >----------------------------------------------------------------------------------
*/
@Test
@Test(groups = "slow")
public void testLocalCopyToDestination()
{
Properties properties = createLocalDestinationProperties();
......@@ -271,7 +271,7 @@ public class DataSetFileOperationsManagerTest extends AbstractFileSystemTestCase
context.assertIsSatisfied();
}
@Test
@Test(groups = "slow")
public void testLocalCopyToNonExistentDestination()
{
Properties properties = createLocalDestinationProperties();
......@@ -297,7 +297,7 @@ public class DataSetFileOperationsManagerTest extends AbstractFileSystemTestCase
context.assertIsSatisfied();
}
@Test(dependsOnMethods = "testLocalCopyToDestination")
@Test(dependsOnMethods = "testLocalCopyToDestination", groups = "slow")
public void testLocalCopyTwoDataSetsToDestination()
{
Properties properties = createLocalDestinationProperties();
......@@ -334,7 +334,7 @@ public class DataSetFileOperationsManagerTest extends AbstractFileSystemTestCase
context.assertIsSatisfied();
}
@Test(dependsOnMethods = "testLocalCopyToDestination")
@Test(dependsOnMethods = "testLocalCopyToDestination", groups = "slow")
public void testLocalRetrieveFromDestination()
{
/*
......@@ -387,7 +387,7 @@ public class DataSetFileOperationsManagerTest extends AbstractFileSystemTestCase
context.assertIsSatisfied();
}
@Test(dependsOnMethods = "testLocalCopyToDestination")
@Test(dependsOnMethods = "testLocalCopyToDestination", groups = "slow")
public void testLocalPresentInDestination()
{
Properties properties = createLocalDestinationProperties();
......@@ -459,7 +459,7 @@ public class DataSetFileOperationsManagerTest extends AbstractFileSystemTestCase
context.assertIsSatisfied();
}
@Test(dependsOnMethods = "testLocalCopyToDestination")
@Test(dependsOnMethods = "testLocalCopyToDestination", groups = "slow")
public void testLocalDeleteFromDestination()
{
/*
......
......@@ -115,7 +115,7 @@ public class ImageUtilTest extends AssertJUnit
assertImageSize(805, 1023, loadImageByInputStream("png-example.png"));
}
@Test
@Test(groups = "slow")
public void testTiffImage()
{
assertImageSize(805, 1023, loadImageByFile("tiff-example.tiff"));
......
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