* Replace panics in unit tests by require.NoError and t.Fatalf Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
GetSubTree
Previously, the depth was restricted because with BFS the amount of nodes we have in memory blows up exponentially. With DFS is is linear, so we can process trees of arbitrary depth. Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>