mirror of
https://github.com/darlinghq/class-dump.git
synced 2024-11-23 12:29:43 +00:00
3870e5cd84
different results that it used to.
19 lines
364 B
Objective-C
19 lines
364 B
Objective-C
// -*- mode: ObjC -*-
|
|
|
|
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
|
|
// Copyright (C) 1997-1998, 2000-2001, 2004-2007 Steve Nygard
|
|
|
|
#import <SenTestingKit/SenTestingKit.h>
|
|
|
|
@class CDClassDump;
|
|
|
|
@interface CDPathUnitTest : SenTestCase
|
|
{
|
|
CDClassDump *classDump;
|
|
}
|
|
|
|
- (void)setUp;
|
|
- (void)tearDown;
|
|
|
|
@end
|