use of org.killbill.billing.mock.glue.MockInvoiceModule in project killbill by killbill.
the class TestPaymentModule method configure.
@Override
protected void configure() {
super.configure();
install(new MockInvoiceModule(configSource));
install(new MockSubscriptionModule(configSource));
install(new MockTenantModule(configSource));
install(new CacheModule(configSource));
install(new ConfigModule(configSource));
install(new EventModule(configSource));
install(new CallContextModule(configSource));
installExternalApis();
bind(TestPaymentHelper.class).asEagerSingleton();
}
use of org.killbill.billing.mock.glue.MockInvoiceModule in project killbill by killbill.
the class TestOverdueModule method configure.
@Override
protected void configure() {
super.configure();
install(new AuditModule(configSource));
install(new CacheModule(configSource));
install(new ConfigModule(configSource));
install(new EventModule(configSource));
install(new CallContextModule(configSource));
install(new CustomFieldModule(configSource));
install(new MockAccountModule(configSource));
install(new MockEntitlementModule(configSource, new ApplicatorBlockingApi()));
install(new MockInvoiceModule(configSource));
install(new MockTagModule(configSource, true));
install(new TemplateModule(configSource));
install(new MockTenantModule(configSource));
bind(OverdueBusListenerTester.class).asEagerSingleton();
bind(TestOverdueHelper.class).asEagerSingleton();
}
Aggregations