01: package org.hanseltest; 02: 03: /** 04: * Simple code to be covered bythe testcases. 05: * @author Niklas Mehner 06: */ 07: public class CoverSimple { 08: 09: /** 10: * Simple method to test covering a simple method. 11: * @return 5 12: */ 13: public int coverSimple() { 14: return 5; 15: } 16: }