1 package it.com.atlassian.plugin.refimpl;
2
3 import com.atlassian.functest.client.RemoteTestRunner;
4 import it.com.atlassian.refapp.RefappTestURLs;
5 import org.junit.runner.RunWith;
6
7 /*
8 * This test runner runs the test found in the refapp-test-plugin. The reason we are including it in here
9 * is so that we only need to spin up one version of refapp, and to avoid relying to heavily on amps magic.
10 */
11 @RunWith(RemoteTestRunner.class)
12 public class TestRunner {
13
14 @RemoteTestRunner.BaseURL
15 public static String base() {
16 return RefappTestURLs.BASEURL;
17 }
18
19 @RemoteTestRunner.Group(name = "refapp-test")
20 public void standardTest() {
21 }
22 }