File: create.m

package info (click to toggle)
gnustep-base 1.31.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,580 kB
  • sloc: objc: 239,446; ansic: 36,519; cpp: 122; sh: 112; makefile: 100; xml: 32
file content (45 lines) | stat: -rw-r--r-- 1,375 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#import <Foundation/NSArray.h>
#import <Foundation/NSString.h>
#import <Foundation/NSAutoreleasePool.h>
#import "ObjectTesting.h"

int main()
{
  NSAutoreleasePool   *arp = [NSAutoreleasePool new];
  id val1,val2,val3;
  id ptrvals[3];
  NSArray *obj, *old;
  val1 = @"Tom";
  val2 = @"Petty";
  val3 = @"doesn't want to live like a refugee";

  ptrvals[0] = val1;
  ptrvals[1] = val2;
  ptrvals[2] = val3;
 
  obj = [NSArray new];
  PASS((obj != nil && [obj isKindOfClass:[NSArray class]] && [obj count] == 0),
       "+new creates an empty array");
  [obj release];
  obj = [NSArray array];
  PASS((obj != nil && [obj isKindOfClass:[NSArray class]] && [obj count] == 0),
       "+array creates an empty array");
  PASS_EXCEPTION([NSArray arrayWithObject:nil];, @"NSInvalidArgumentException",
    "+arrayWithObject with nil argument throws exception");
 
  obj = [NSArray arrayWithObject:val1];
  PASS(obj != nil && [obj isKindOfClass:[NSArray class]] && [obj count] == 1,
       "+arrayWithObject: builds a minimal array");
  
  obj = [NSArray arrayWithObjects:ptrvals count:3];
  old = obj;
  PASS(obj != nil && [obj isKindOfClass:[NSArray class]] && [obj count] == 3,
       "+arrayWithObjects: builds an array");

  obj = [NSArray arrayWithArray:old];
  PASS(obj != nil && [old isEqual:obj], "+arrayWithArray: copies array");

  [arp release]; arp = nil;
  return 0;
}