ObjFW  Diff

Differences From Artifact [e93715a85b]:

To Artifact [174623645b]:


29
30
31
32
33
34
35
36

37
38

39
40

41
42
43
44
29
30
31
32
33
34
35

36
37

38
39

40
41
42
43
44







-
+

-
+

-
+





	TEST(@"+[numberWithIntMax:]",
	    (num = [OFNumber numberWithIntMax: 123456789]))

	TEST(@"-[isEqual:]",
	    [num isEqual: [OFNumber numberWithUInt32: 123456789]])

	TEST(@"-[hash]", [num hash] == 0x82D8BC42)
	TEST(@"-[hash]", num.hash == 0x82D8BC42)

	TEST(@"-[charValue]", [num charValue] == 21)
	TEST(@"-[charValue]", num.charValue == 21)

	TEST(@"-[doubleValue]", [num doubleValue] == 123456789.L)
	TEST(@"-[doubleValue]", num.doubleValue == 123456789.L)

	[pool drain];
}
@end