Coverage Report - org.seasar.cubby.examples.guice.service.impl.HelloServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
HelloServiceImpl
100%
2/2
N/A
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  
 }