我尝试使用JUnit Servlet在Adobe AEM实例上远程执行JUnit测试。帖子可供参考:Which Testing framework will suit for Adobe CQ5 Project?
我已经定义了我的测试用例,并希望能够在此网址上看到它
http://localhost:4502/system/sling/junit/
虽然没有出现。
测试与mvn test
正确运行。
这是一个非常简单的测试用例(junit3):
import junit.framework.TestCase;
public class mySampleTest extends TestCase {
public void testSomething(){
return;
}
}
为了让测试用例在Sling远程JUnit测试servlet中可用,我需要做什么?