From 3260a95a2fa5241522a94f0521b897e0b2d64cbb Mon Sep 17 00:00:00 2001 From: jstaerk Date: Fri, 20 Dec 2024 09:18:03 +0100 Subject: [PATCH] removed test test --- .../mustangproject/ZUGFeRD/ZF2PushTest.java | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2PushTest.java b/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2PushTest.java index 0d6f2cb7..ba53bc3a 100644 --- a/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2PushTest.java +++ b/library/src/test/java/org/mustangproject/ZUGFeRD/ZF2PushTest.java @@ -803,24 +803,5 @@ public class ZF2PushTest extends TestCase { match the read grand total */ } } - public void testRead() { - - - - ZUGFeRDInvoiceImporter zii = new ZUGFeRDInvoiceImporter("\\Users\\jstaerk\\temp\\1424413_anonymized.xml"); - try { - Invoice i = zii.extractInvoice(); - - TransactionCalculator tc=new TransactionCalculator(i); - assertEquals(0,tc.getGrandTotal().compareTo(new BigDecimal("442.83"))); - - } catch (XPathExpressionException e) { - fail("XPathExpressionException should not be raised"); - } catch (ParseException e) { - fail("ParseException should not be raised"); - /* a parseException would also be fired if the calculated grand total does not - match the read grand total */ - } - } }