Differences From Artifact [1fa12ca59b]:
- File tests/OFDictionary.m — part of check-in [2555952c42] at 2009-11-13 23:18:03 on branch trunk — Implement -[isEqual:] and -[hash] for OFDictionary. (user: js, size: 3405) [annotate] [blame] [check-ins using]
To Artifact [aef130b0e8]:
- File tests/OFDictionary.m — part of check-in [2f85ceeed7] at 2009-11-22 16:33:04 on branch trunk — Add -[drain] to OFAutoreleasePool. (user: js, size: 3403) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
108 109 110 111 112 113 114 | TEST(@"-[isEqual:]", ![dict isEqual: dict2] && [dict removeObjectForKey: @"key3"] && ![dict isEqual: dict2] && [dict setObject: values[0] forKey: keys[0]] && [dict isEqual: dict2]) | | | 108 109 110 111 112 113 114 115 116 | TEST(@"-[isEqual:]", ![dict isEqual: dict2] && [dict removeObjectForKey: @"key3"] && ![dict isEqual: dict2] && [dict setObject: values[0] forKey: keys[0]] && [dict isEqual: dict2]) [pool drain]; } |