MCPcopy Index your code
hub / github.com/joowani/binarytree / test_tree_clone_with_numbers

Function test_tree_clone_with_numbers

tests/test_tree.py:355–363  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

353
354
355def test_tree_clone_with_numbers() -> None:
356 for _ in range(REPETITIONS):
357 root = tree(letters=False)
358 assert root is not None
359 clone = root.clone()
360 assert root.values == clone.values
361 assert root.equals(clone)
362 assert clone.equals(root)
363 assert root.properties == clone.properties
364
365
366def test_tree_clone_with_letters() -> None:

Callers

nothing calls this directly

Calls 3

treeFunction · 0.90
cloneMethod · 0.80
equalsMethod · 0.80

Tested by

no test coverage detected