We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6ad6b4 commit da18f22Copy full SHA for da18f22
exercises/tiered_pricing/solutions/oflorez/src/test/java/tv/codely/checkout/TieredPricingShould.java
@@ -21,4 +21,10 @@ void calculate_total_value_for_3_subscription() {
21
var pricing = new TieredPricing();
22
assertEquals(717, pricing.calculateTotalPrice(3));
23
}
24
+
25
+ @Test
26
+ void calculate_total_value_for_4_subscription() {
27
+ var pricing = new TieredPricing();
28
+ assertEquals(956, pricing.calculateTotalPrice(4));
29
+ }
30
0 commit comments