Skip to content

Commit 5e63593

Browse files
committed
testing propagation
1 parent fb73237 commit 5e63593

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/trees.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ include(joinpath(@__DIR__, "examples", "onetree.jl"))
8383
@test eltype(nodevalue.(collect(Leaves(n)))) Int
8484
@test nodevalue.(collect(PreOrderDFS(n))) == [2, 3, 4, 0]
8585
@test nodevalue.(collect(PostOrderDFS(n))) == [0, 4, 3, 2]
86+
@test ParentLinks(n) == StoredParents()
87+
@test SiblingLinks(n) == StoredSiblings()
8688
end
8789

8890
include(joinpath(@__DIR__, "examples", "fstree.jl"))

0 commit comments

Comments
 (0)