r3747 - trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules
Author: dcosse Date: 2014-02-17 09:41:35 +0100 (Mon, 17 Feb 2014) New Revision: 3747 Url: http://chorem.org/projects/lima/repository/revisions/3747 Log: fix test Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java =================================================================== --- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java 2014-02-14 18:06:21 UTC (rev 3746) +++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java 2014-02-17 08:41:35 UTC (rev 3747) @@ -30,6 +30,7 @@ import org.chorem.lima.entity.AccountImpl; import org.junit.Assert; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; /** @@ -66,8 +67,11 @@ * * @throws LimaException */ + @Ignore @Test(expected=LimaException.class) public void testCreateAccountWrongStart() throws LimaException { + // TODO DCossé 17/02/14 this test is no more valid as count with account number with letters are now accepted + // there is just a warning about it Account myAccount = new AccountImpl(); myAccount.setAccountNumber("10TEST"); accountService.createAccount(myAccount);
participants (1)
-
dcosse@users.chorem.org