Package appinterfaces

Examples of appinterfaces.IProducto


    public void canarioDebeReconocerComportamientoDeProducto(){
        String codigo = "PR001";
        String nombre = "Canario";
        double precio = 50.00;
        String nombreCientifico = "Canarious";
        IProducto canario = new Canario(codigo, nombre, precio,nombreCientifico);
        double precioRetornado = canario.getPrecioUnitario();
        Assert.assertEquals(precio, precioRetornado, 0.0);
       
       
    }
View Full Code Here

TOP

Related Classes of appinterfaces.IProducto

Copyright © 2018 www.massapicom. 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.