Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Change @slowtest to be a method level annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos A. Munoz committed Sep 4, 2013
1 parent da8e36a commit 3d0f8bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zanata-war/src/test/java/org/zanata/SlowTest.java
Expand Up @@ -31,7 +31,7 @@
* @author Carlos Munoz <a href="mailto:camunoz@redhat.com">camunoz@redhat.com</a>
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Target(ElementType.METHOD)
public @interface SlowTest
{
}
Expand Up @@ -77,7 +77,6 @@
* @author Carlos Munoz <a href="mailto:camunoz@redhat.com">camunoz@redhat.com</a>
*/
@Test(groups = { "business-tests" })
@SlowTest
public class CopyTransServiceImplTest extends ZanataDbunitJpaTest
{
private SeamAutowire seam = SeamAutowire.instance();
Expand Down Expand Up @@ -294,6 +293,7 @@ public void determineContentStateFromRuleListBasics()
}

@Test(dataProvider = "CopyTrans")
@SlowTest
public void testCopyTrans(CopyTransExecution execution)
{
// Prepare Execution
Expand Down

0 comments on commit 3d0f8bd

Please sign in to comment.