mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 02:01:03 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32187 72102866-910b-0410-8b05-ffd578937521
16 lines
312 B
Objective-C
16 lines
312 B
Objective-C
/*
|
|
copyright 2004 Alexander Malmberg <alexander@malmberg.org>
|
|
|
|
Test that -base's cluster of NSMutableString classes are valid NSString
|
|
classes.
|
|
*/
|
|
|
|
#import "../NSString/NSString_tests.h"
|
|
|
|
#import <Foundation/NSString.h>
|
|
|
|
int main(int argc,char **argv)
|
|
{
|
|
TestNSStringClass([NSMutableString class]);
|
|
return 0;
|
|
}
|