public class BillingTest {
public static void main(String[] args) {
BillingService billing = new InMemoryBillingService();
billing.addCustomer("C1", PricingTier.BASIC);
billing.addCustomer("C2", PricingTier.PREMIUM);
billing.recordUsage("C1");
billing.recordUsage("C1");
billing.recordUsage("C1");
billing.recordUsage("C2");
billing.recordUsage("C2");
assert billing.getMonthlyBill("C1") == 3.0;
assert billing.getMonthlyBill("C2") == 1.0;
billing.resetMonthlyUsage();
assert billing.getMonthlyBill("C1") == 0.0;
System.out.println("✅ Billing tests passed");
}
}