// // HOMNSDictionaryTests.h // HigherOrderMessaging // // Created by Ofri Wolfus on 11/10/06. // Copyright 2006 Ofri Wolfus. All rights reserved. // #import "HOMUnitTest.h" @interface HOMNSDictionaryTests : HOMUnitTest { NSDictionary *smallDict; /* (key,object) => { (1, a), (2, b), (3, abc) } (all strings) */ NSDictionary *largeDict; /* From 0 to 1000, a string as the object and a number for the key */ NSMutableDictionary *largeDictResult; /* Rserved for subclasses' usge. Allocated and deallocated by HOMNSDictionaryTests */ } @end