atlas-remote-test ignores tests with @RunWith(AtlassianPluginsTestRunner.class)

XMLWordPrintable

    • Severity 3 - Minor
    • 0

      The following class is ignored as a wired test and not included in tests useing atlas-remote-test:

      package it.com.pbaranchikov.stash.checks;
      
      import org.junit.runner.RunWith;
      
      import com.atlassian.plugins.osgi.test.AtlassianPluginsTestRunner;
      
      @RunWith(AtlassianPluginsTestRunner.class)
      public class InheritedEolTest extends AbstractGitCheck {
      ...
      

      Instead, if I specify AtlassianPluginsTestRunner as a full class name, it is treated as wired test successfully:

      package it.com.pbaranchikov.stash.checks;
      
      import org.junit.runner.RunWith;
      
      @RunWith(com.atlassian.plugins.osgi.test.AtlassianPluginsTestRunner.class)
      public class RegularCommitsTest extends AbstractGitCheck {
      ...
      

            Assignee:
            Unassigned
            Reporter:
            Pavel Baranchikov
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: