mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
import testsuite
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32187 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
48cc36811f
commit
b179b29898
374 changed files with 20864 additions and 0 deletions
49
Tests/base/NSString/basic.m
Normal file
49
Tests/base/NSString/basic.m
Normal file
|
@ -0,0 +1,49 @@
|
|||
#import "ObjectTesting.h"
|
||||
#import <Foundation/NSAutoreleasePool.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
||||
unichar u0 = 'a';
|
||||
unichar u1 = 0xfe66;
|
||||
char buf[32];
|
||||
NSString *s;
|
||||
NSString *testObj = [NSString stringWithCString: "Hello\n"];
|
||||
|
||||
test_alloc(@"NSString");
|
||||
test_NSObject(@"NSString",[NSArray arrayWithObject:testObj]);
|
||||
test_NSCoding([NSArray arrayWithObject:testObj]);
|
||||
test_NSCopying(@"NSString", @"NSMutableString",
|
||||
[NSArray arrayWithObject:testObj], NO, NO);
|
||||
test_NSMutableCopying(@"NSString", @"NSMutableString",
|
||||
[NSArray arrayWithObject:testObj]);
|
||||
|
||||
/* Test non-ASCII strings. */
|
||||
testObj = [@"\"\\U00C4\\U00DF\"" propertyList];
|
||||
test_NSMutableCopying(@"NSString", @"NSMutableString",
|
||||
[NSArray arrayWithObject:testObj]);
|
||||
|
||||
PASS([(s = [[NSString alloc] initWithCharacters: &u0 length: 1])
|
||||
isKindOfClass: [NSString class]]
|
||||
&& ![s isKindOfClass: [NSMutableString class]],
|
||||
"initWithCharacters:length: creates mutable string for ascii");
|
||||
|
||||
PASS([(s = [[NSString alloc] initWithCharacters: &u1 length: 1])
|
||||
isKindOfClass: [NSString class]]
|
||||
&& ![s isKindOfClass: [NSMutableString class]],
|
||||
"initWithCharacters:length: creates mutable string for unicode");
|
||||
|
||||
TEST_EXCEPTION([[NSString alloc] initWithString: nil];,
|
||||
NSInvalidArgumentException, YES,
|
||||
"NSString -initWithString: does not allow nil argument");
|
||||
|
||||
PASS([@"he" getCString: buf maxLength: 2 encoding: NSASCIIStringEncoding]==NO,
|
||||
"buffer exact length fails");
|
||||
PASS([@"hell" getCString: buf maxLength: 5 encoding: NSASCIIStringEncoding],
|
||||
"buffer length+1 works");
|
||||
PASS(strcmp(buf, "hell") == 0, "getCString:maxLength:encoding");
|
||||
|
||||
[arp release]; arp = nil;
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue