simple getobjectValue test

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32212 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2011-02-19 00:38:00 +00:00
parent f955681fa6
commit e3d0cb531f

View file

@ -58,6 +58,9 @@ int main()
PASS_EQUAL(str, @"-1235", "format string of length 1");
[fmt getObjectValue: &num forString: @"0.00", nil];
PASS_EQUAL(num, [NSNumber numberWithFloat: 0.0], "getObjectValue inited with 0.00");
[arp release]; arp = nil;
return 0;
}