class-dump/UnitTests/CDTypeParserUnitTest.h

25 lines
603 B
C
Raw Normal View History

2007-11-02 09:49:29 +00:00
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
2007-03-14 10:07:33 +00:00
// Copyright (C) 1997-1998, 2000-2001, 2004-2007 Steve Nygard
2007-11-03 07:55:46 +00:00
#import <SenTestingKit/SenTestingKit.h>
2007-11-03 07:55:46 +00:00
@interface CDTypeParserUnitTest : SenTestCase
{
}
- (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