View Javadoc
1   package org.pojomatic.moduletest;
2   
3   import static org.junit.Assert.*;
4   
5   import org.junit.Test;
6   
7   public class BeanTest {
8   
9       @Test
10      public void testToString() throws Exception {
11          assertEquals("Bean{s: {hello, world}}", new Bean("hello, world").toString());
12      }
13  
14  }