mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 10:11:03 +00:00
17 lines
312 B
Mathematica
17 lines
312 B
Mathematica
|
/*
|
||
|
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;
|
||
|
}
|