Remove broken test. This code gave a bad access exception when run on a Mac.

This commit is contained in:
fredkiefer 2019-06-27 19:02:03 +02:00
parent 7feb7be03a
commit 05233e64d6

View file

@ -146,12 +146,6 @@ int main()
PASS(testObj != nil && [testObj count] == 1,
"cannot create an ordered set with multiple like elements");
id objs2[] = {@"Hello"};
testObj = [NSOrderedSet orderedSetWithObjects: objs2 count: 2];
[testObjs addObject: testObj];
PASS(testObj != nil && [testObj count] == 1,
"Does not throw exception when count != to number of elements");
NSMutableArray *arr = [NSMutableArray array];
[arr addObject: @"Hello"];
[arr addObject: @"World"];