单元测试中去掉不必要的组依赖

This commit is contained in:
BinaryWang 2016-07-04 13:19:24 +08:00
parent 6b2e858a62
commit a21f1522a6
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import java.io.File;
*
* @author chanjarster
*/
@Test(groups = "qrCodeAPI", dependsOnGroups = { "baseAPI" })
@Test(groups = "qrCodeAPI")
@Guice(modules = ApiTestModule.class)
public class WxMpQrCodeAPITest {

View File

@ -11,7 +11,7 @@ import org.testng.annotations.Test;
*
* @author chanjarster
*/
@Test(groups = "shortURLAPI", dependsOnGroups = { "baseAPI" })
@Test(groups = "shortURLAPI")
@Guice(modules = ApiTestModule.class)
public class WxMpShortUrlAPITest {