//This file generated automatically from the MARIUS LP system, please do not edit.

public class CuentaBancariaTest {

 public static void main(String [] args) {
   CuentaBancariaImpl cta = new CuentaBancariaImpl("1023454",
              "Gustavo De la Cruz");
   cta.setSaldo(2000);
   try {
   cta.ingresar(1000);
   cta.extraer(-3500);
   cta.extraer(3500);
   } catch (CuentaBancariaMontoIncorrecto pre) {
      pre.printStackTrace();
   } catch (CuentaBancariaSaldoExcedido pre) {
      pre.printStackTrace();
   }
 }

} //End of class CuentaBancariaTest
