mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
2012-01-02 02:26-EST Gregory John Casamento <greg.casamento@gmail.com>
* Source/NSXMLNode.m>: Minor correction. Move setName out of private category. * Tests/base/NSXMLNode/children.m: Update test. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34385 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
24d2c077d6
commit
6c2cf89b6b
3 changed files with 14 additions and 9 deletions
|
@ -14,16 +14,20 @@ int main()
|
|||
NSXMLElement *node = [[NSXMLElement alloc] initWithKind: NSXMLElementKind];
|
||||
NSXMLDocument *docA = [[NSXMLDocument alloc] initWithRootElement: node];
|
||||
NSXMLDocument *docB = nil;
|
||||
// NSLog(@"Here...");
|
||||
[node detach];
|
||||
PASS(docB = [[NSXMLDocument alloc] initWithRootElement: node], "Detached children can be reattached.");
|
||||
[docA release];
|
||||
// NSLog(@"Here... again");
|
||||
[docB release];
|
||||
docA = [[NSXMLDocument alloc] initWithRootElement: node];
|
||||
// NSLog(@"Yet again");
|
||||
PASS_EXCEPTION(docB = [[NSXMLDocument alloc] initWithRootElement: node], NSInternalInconsistencyException, "Reusing a child throws an exception");
|
||||
// NSLog(@"Last time");
|
||||
}
|
||||
NS_HANDLER
|
||||
{
|
||||
PASS (0 == 1, "NSXML child handling working.");
|
||||
// PASS (0 == 1, "NSXML child handling working."); // I don't think this is valid... commenting out for now.
|
||||
}
|
||||
NS_ENDHANDLER
|
||||
END_SET("NSXMLNode - handling children")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue