| import static org.junit.jupiter.api.Assertions.*; | |
| import org.junit.jupiter.api.Test; | |
| import java.util.List; | |
| import java.util.Arrays; | |
| import java.util.ArrayList; | |
| public class Main { | |
| //Program start | |
| //Program end | |
| public void test1() { | |
| assertEquals("50", discountPrices("there are $1 $2 and 5$ candies in the shop", 50)); | |
| } | |
| public void test2() { | |
| assertEquals("100", discountPrices("1 2 $3 4 $5 $6 7 8$ $9 $10$", 100)); | |
| } | |
| } | |