(String[] args)
| 7 | |
| 8 | public class Meal { |
| 9 | public static void main(String[] args) { |
| 10 | for(int i = 0; i < 5; i++) { |
| 11 | for(Course course : Course.values()) { |
| 12 | Food food = course.randomSelection(); |
| 13 | System.out.println(food); |
| 14 | } |
| 15 | System.out.println("***"); |
| 16 | } |
| 17 | } |
| 18 | } |
| 19 | /* Output: |
| 20 | SPRING_ROLLS |
nothing calls this directly
no test coverage detected