UP-Viagg-io/Viagg-io/Assets/Packages/MyBT/BT-Examples/_Testing/multiple-calls.bt.txt

31 lines
478 B
Plaintext
Raw Normal View History

2024-01-19 16:30:05 +01:00
// comment a
Tree("Root") {
// comment b
Decorator (Repeat) {
// comment c
Composite (Marathon) {
// comment
RunTree("SubTree")
Composite (Sequence) {
Test.CountToNumber("a.a", 3)
RunTree("SubTree")
}
}
}
}
Tree("SubTree") {
Composite (Sequence) {
RunTree("SubSubTree")
Composite (Sequence) {
Test.CountToNumber("b.a", 3)
RunTree("SubSubTree")
}
}
}
Tree("SubSubTree") {
Composite (Sequence) {
Test.CountToNumber("x.b", 3)
}
}