コード例 #1
0
ファイル: TestJanitor.java プロジェクト: larue3000/killbill
 @BeforeClass(groups = "slow")
 protected void beforeClass() throws Exception {
   super.beforeClass();
   mockPaymentProviderPlugin =
       (MockPaymentProviderPlugin)
           registry.getServiceForName(MockPaymentProviderPlugin.PLUGIN_NAME);
   janitor.start();
 }
コード例 #2
0
ファイル: TestJanitor.java プロジェクト: larue3000/killbill
 @AfterMethod(groups = "slow")
 public void afterMethod() throws Exception {
   super.afterMethod();
 }
コード例 #3
0
ファイル: TestJanitor.java プロジェクト: larue3000/killbill
 @BeforeMethod(groups = "slow")
 public void beforeMethod() throws Exception {
   super.beforeMethod();
   mockPaymentProviderPlugin.clear();
   account = testHelper.createTestAccount("*****@*****.**", true);
 }