1   package org.seasar.cubby.examples.guice.service.impl;
2   
3   import static org.junit.Assert.assertEquals;
4   
5   import org.junit.Test;
6   import org.seasar.cubby.examples.guice.service.impl.HelloServiceImpl;
7   
8   public class HelloServiceImplTest {
9   
10  	@Test
11  	public void sayHello() {
12  		HelloServiceImpl hello = new HelloServiceImpl();
13  		assertEquals("Hello!", hello.getMessage());
14  	}
15  
16  }