| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| HelloServiceImpl |
|
| 1.0;1 |
| 1 | package org.seasar.cubby.examples.guice.service.impl; | |
| 2 | ||
| 3 | import org.seasar.cubby.examples.guice.service.HelloService; | |
| 4 | ||
| 5 | 4 | public class HelloServiceImpl implements HelloService { |
| 6 | ||
| 7 | public String getMessage() { | |
| 8 | 2 | return "Hello!"; |
| 9 | } | |
| 10 | ||
| 11 | } |