2005-08-13 20:32:02 +00:00
|
|
|
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
|
2006-10-14 03:17:54 +00:00
|
|
|
// Copyright (C) 1997-1998, 2000-2001, 2004-2006 Steve Nygard
|
2004-01-18 02:30:09 +00:00
|
|
|
|
|
|
|
#import <ObjcUnit/TestCase.h>
|
|
|
|
|
|
|
|
@interface CDTypeParserUnitTest : TestCase
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setUp;
|
|
|
|
- (void)tearDown;
|
|
|
|
|
2006-10-14 02:17:44 +00:00
|
|
|
- (void)testType:(NSString *)aType showLexing:(BOOL)shouldShowLexing;
|
2004-01-18 02:30:09 +00:00
|
|
|
- (void)testMethodType:(NSString *)aMethodType showLexing:(BOOL)shouldShowLexing;
|
|
|
|
|
2006-10-14 02:25:27 +00:00
|
|
|
- (void)testLoneConstType;
|
|
|
|
- (void)testObjectQuotedStringTypes;
|
|
|
|
|
2006-10-14 05:40:10 +00:00
|
|
|
- (void)testMissingFieldNames;
|
|
|
|
- (void)testLowercaseClassName;
|
|
|
|
|
2004-01-18 02:30:09 +00:00
|
|
|
@end
|