Package model

Examples of model.Loro.volar()


        String codigo = "LO001";
        String nombre = "Loro";
        double precio = 100.00;
        String nombreCientifico = "Lorus";
        IAve loro = new Loro(codigo,nombre,precio,nombreCientifico);
        loro.volar();
        loro.cantar();
        String retornado = loro.getNombreCientifico();
        Assert.assertEquals(nombreCientifico,retornado);
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.