MCPcopy
hub / github.com/joowani/binarytree / test_tree_clone_with_letters

Function test_tree_clone_with_letters

tests/test_tree.py:366–374  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

364
365
366def test_tree_clone_with_letters() -> None:
367 for _ in range(REPETITIONS):
368 root = tree(letters=True)
369 assert root is not None
370 clone = root.clone()
371 assert root.values == clone.values
372 assert root.equals(clone)
373 assert clone.equals(root)
374 assert root.properties == clone.properties
375
376
377def test_list_representation_1() -> None:

Callers

nothing calls this directly

Calls 3

treeFunction · 0.90
cloneMethod · 0.80
equalsMethod · 0.80

Tested by

no test coverage detected