IOS-2628 Test for 0-length attachments

IOS-2651
Dirk Zimmermann 2 years ago
parent febde2a826
commit 391e9b2bc5

@ -682,6 +682,11 @@
// There shouldn't be any attachments
XCTAssertEqual(decmsg.attachments.count, 0);
// And if there is, 0-length looks wrong
for (PEPAttachment *att in decmsg.attachments) {
XCTAssertGreaterThan(att.data.length, 0);
}
}
- (void)testOutgoingContactColor

Loading…
Cancel
Save