(self, rootObj)
| 1 | class BinaryTree: |
| 2 | def __init__(self, rootObj): |
| 3 | self.key = rootObj |
| 4 | self.leftChild = None |
| 5 | self.rightChild = None |
| 6 | |
| 7 | def insertLeft(self, newNode): |
| 8 | if self.leftChild == None: |
nothing calls this directly
no outgoing calls
no test coverage detected