Fix UTs
continuous-integration/drone/push Build is passing Details

main
Andrey Ivanov 2024-10-14 10:49:48 +03:00
parent 63b4b4b484
commit da786d9f29
1 changed files with 10 additions and 9 deletions

View File

@ -7,7 +7,8 @@ import (
func TestDecomposeTree(t *testing.T) {
smallTree := getSmallTree()
singleNodeTree := getSingleNodeTree()
singleNodeTree1 := getSingleNodeTree()
singleNodeTree2 := getSingleNodeTree()
deepTree := getDeepTree()
wideTree := getWideTree()
assimmetricTree := getAssimmetricTree()
@ -17,26 +18,26 @@ func TestDecomposeTree(t *testing.T) {
outputParts []SubTree
err string
}{
"Single node short tree with small threshold": {
inputTree: singleNodeTree.TreeWeighted,
inputThreshold: 10,
err: "[GetNodePath]: threshold too small",
},
"Normal tree 3x3": {
inputTree: smallTree.TreeWeighted,
inputThreshold: smallTree.Threshold,
outputParts: smallTree.Parts,
},
"Single node short tree": {
inputTree: singleNodeTree.TreeWeighted,
inputThreshold: singleNodeTree.Threshold,
outputParts: singleNodeTree.Parts,
inputTree: singleNodeTree1.TreeWeighted,
inputThreshold: singleNodeTree1.Threshold,
outputParts: singleNodeTree1.Parts,
},
"Single branch deep tree": {
inputTree: deepTree.TreeWeighted,
inputThreshold: deepTree.Threshold,
outputParts: deepTree.Parts,
},
"Single node short tree with small threshold": {
inputTree: singleNodeTree2.TreeWeighted,
inputThreshold: 10,
err: "[GetNodePath]: threshold too small",
},
"Wide tree": {
inputTree: wideTree.TreeWeighted,
inputThreshold: wideTree.Threshold,