JPP: Renamed enter pie to cake
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 54s

This commit is contained in:
Willem Cazander 2026-03-22 14:34:49 +01:00
parent ca4fc5619b
commit d78bd5ff46
15 changed files with 94 additions and 94 deletions

View file

@ -30,12 +30,12 @@ package ᒢᣘᐧᣟ.ᑊᑉᒻᣔᔆᔆ.ᒼᣔᑊᑉᓫ;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class EnterPieCuisineTest {
public class CakeCuisineTest {
@Test
public void testEnterPieSize() {
EnterPieCuisine cuisine = EnterPieCuisine.instanceᴺᵉʷ();
EnterPieDessert dessert = cuisine.ₚᵣₐᵧToੴ(EnterPie.class);
CakeCuisine cuisine = CakeCuisine.instanceᴺᵉʷ();
CakeDessert dessert = cuisine.ₚᵣₐᵧToੴ(CakeTower.class);
Assertions.assertNotNull(dessert);
Assertions.assertTrue(dessert.getMenu().size() > 10);
}