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