package data; /** * Simple test class with one method returning a String * * @author Andy Clement */ public class Fruity { public String getFruit() { return "apple"; } }