class-dump/UnitTests/CDTypeParserUnitTest.h

23 lines
567 B
C
Raw Normal View History

// 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
#import <ObjcUnit/TestCase.h>
@interface CDTypeParserUnitTest : TestCase
{
}
- (void)setUp;
- (void)tearDown;
- (void)testType:(NSString *)aType showLexing:(BOOL)shouldShowLexing;
- (void)testMethodType:(NSString *)aMethodType showLexing:(BOOL)shouldShowLexing;
2006-10-14 02:25:27 +00:00
- (void)testLoneConstType;
- (void)testObjectQuotedStringTypes;
- (void)testMissingFieldNames;
- (void)testLowercaseClassName;
@end