removed special test

This commit is contained in:
jstaerk
2022-08-11 12:51:48 +02:00
parent 83f4b710fb
commit 469fc3566e

View File

@@ -81,14 +81,7 @@ public class XRTest extends TestCase {
String number = "123"; String number = "123";
String amountStr = "1.00"; String amountStr = "1.00";
BigDecimal amount = new BigDecimal(amountStr); BigDecimal amount = new BigDecimal(amountStr);
byte[] b = null; byte[] b = {12, 13};
Path path = Paths.get("c:\\users\\jstaerk\\temp\\ef1710en.pdf");
try {
b = Files.readAllBytes(path);
} catch(IOException ex) {
ex.printStackTrace();
}
FileAttachment fe1=new FileAttachment("one.pdf", "application/pdf", "Alternative", b); FileAttachment fe1=new FileAttachment("one.pdf", "application/pdf", "Alternative", b);
Invoice i = new Invoice().setDueDate(new Date()).setIssueDate(new Date()).setDeliveryDate(new Date()) Invoice i = new Invoice().setDueDate(new Date()).setIssueDate(new Date()).setDeliveryDate(new Date())