@Test
public void accountTest() throws Exception {
ActorRef bank = _system.actorOf(new Props(BankActor.class));
bank.tell(new AccountDebit(Float.parseFloat("1000")));
bank.tell(new AccountCredit(Float.parseFloat("1000")));
bank.tell(new AccountDebit(Float.parseFloat("1000")));
bank.tell(new AccountDebit(Float.parseFloat("1000")));
bank.tell(new AccountDebit(Float.parseFloat("3500")));
bank.tell(new AccountCredit(Float.parseFloat("2500")));