Package prevaylerjr

Examples of prevaylerjr.PrevaylerJr


  PrevaylerJr prevayler = createPrevayler();


  private PrevaylerJr createPrevayler()  {
    try {
      return new PrevaylerJr(new Somador(), tmpFolder());
    } catch (Exception e) {
      throw new IllegalStateException(e);
    }
  }
View Full Code Here


    prevayler.execute(new Soma());
   
    Somador s = (Somador)prevayler.sistema();
    assertEquals(5, s.total());
   
    PrevaylerJr prevayler2 = createPrevayler();
   
    Somador s2 = (Somador)prevayler2.sistema();
    assertEquals(5, s2.total());
   
    prevayler2.execute(new Soma());
    assertEquals(10, s2.total());
   
    prevayler2.execute(new Soma());
    assertEquals(15, s2.total());
  }
View Full Code Here

TOP

Related Classes of prevaylerjr.PrevaylerJr

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.