We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb73237 commit 5e63593Copy full SHA for 5e63593
test/trees.jl
@@ -83,6 +83,8 @@ include(joinpath(@__DIR__, "examples", "onetree.jl"))
83
@test eltype(nodevalue.(collect(Leaves(n)))) ≡ Int
84
@test nodevalue.(collect(PreOrderDFS(n))) == [2, 3, 4, 0]
85
@test nodevalue.(collect(PostOrderDFS(n))) == [0, 4, 3, 2]
86
+ @test ParentLinks(n) == StoredParents()
87
+ @test SiblingLinks(n) == StoredSiblings()
88
end
89
90
include(joinpath(@__DIR__, "examples", "fstree.jl"))
0 commit comments