Cucumber Hello World To run using "maven test"
| 4 | * * To run using "maven test" |
| 5 | */ |
| 6 | public class Belly { |
| 7 | public void eat(int cukes) { |
| 8 | for(int i=0; i< cukes; i++ ){ |
| 9 | System.out.println("I'm eating " + (i + 1) + " cuke"); |
| 10 | } |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected