home *** CD-ROM | disk | FTP | other *** search
- /*
- File: TestHashList.h
-
- Contains: Declaration for TTestHashList class
-
- Copyright: © 1991-1994 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __TESTHASHLIST__
- #define __TESTHASHLIST__
-
- #ifndef __TESTCLASS__
- #include "TestClass.h"
- #endif
- #ifndef __LIBRARYMANAGERCLASSES__
- #include <LibraryManagerClasses.h>
- #endif
-
- #define kTTestHashListID kTestToolPrefix "TTestHashList,1.2"
-
- class TTestHashList : public TTestTool
- {
- BodyTest(HashList, HashList);
-
- virtual void TestIsEmpty(Boolean) const;
- virtual void TestCount(size_t) const;
- virtual void TestMember(short, Boolean) const;
- virtual void DoMiscTests(Boolean) const;
-
- TDynamic* fArray[100];
- };
-
- #endif
-
-
-