package com.ning.billing.entitlement.api.user;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.Stage;
import com.ning.billing.entitlement.glue.MockEngineModuleMemory;
import org.testng.annotations.Test;
public class TestUserApiChangePlanMemory extends TestUserApiChangePlan {
@Override
protected Injector getInjector() {
return Guice.createInjector(Stage.PRODUCTION, new MockEngineModuleMemory());
}
@Test(enabled=true, groups={"fast"})
public void testChangePlanBundleAlignEOTWithNoChargeThroughDate() {
invokeRealMethod(this);
}
@Test(enabled=true, groups={"fast"})
public void testChangePlanBundleAlignEOTWithChargeThroughDate() {
invokeRealMethod(this);
}
@Test(enabled=true, groups={"fast"})
public void testChangePlanBundleAlignIMM() {
invokeRealMethod(this);
}
@Test(enabled=true, groups={"fast"})
public void testMultipleChangeLastIMM() {
invokeRealMethod(this);
}
@Test(enabled=true, groups={"fast"})
public void testMultipleChangeLastEOT() {
invokeRealMethod(this);
}
@Test(enabled=false, groups={"fast"})
public void testChangePlanChangePlanAlignEOTWithChargeThroughDate() {
invokeRealMethod(this);
}
}