Esempio n. 1
0
 def append(self, child):
     ManifestItem.append(self, child)
     if child.id in self.child_map:
         print "Warning: Duplicate heading %s" % child.id
     self.child_map[child.id] = child
Esempio n. 2
0
 def append(self, node):
     child = ManifestItem.append(self, node)
     self.subtests[child.name] = child
Esempio n. 3
0
 def append(self, node):
     child = ManifestItem.append(self, node)
     self.subtests[child.name] = child
Esempio n. 4
0
 def append(self, child):
     ManifestItem.append(self, child)
     if child.id in self.child_map:
         print("Warning: Duplicate heading %s" % child.id)
     self.child_map[child.id] = child
Esempio n. 5
0
 def append(self, child):
     ManifestItem.append(self, child)
     self.child_map[child.name] = child
     assert len(self.child_map) == len(self.children)
Esempio n. 6
0
 def append(self, child):
     ManifestItem.append(self, child)
     self.child_map[child.name] = child
     assert len(self.child_map) == len(self.children)