Check for nil in NSData Test

This commit is contained in:
Hugo Melder 2022-08-04 10:20:04 +02:00
parent 096f6e7fec
commit 52b8752776

View file

@ -15,6 +15,7 @@ int main()
NSUInteger length;
ref = [NSData dataWithContentsOfFile: @"Lorum"];
PASS(ref != nil, "dataWithContentsOfFile: is not nil");
PASS(NO == [ref isGzipped], "Reference data is not gzipped");
data = [ref gzipped: 0];