package org.test; import junit.framework.TestCase; public class SimplePojoTest extends TestCase { public SimplePojoTest() { super(); } public void testPojo() { SimplePojo pojo = new SimplePojo(); pojo.setI( 5 ); assertEquals( 5, pojo.getI() ); } }