Node
data class Node(val parent: BranchSeeker.Node?, var title: String, var status: BranchSeeker.Status? = null, var message: String? = null, val nodes: MutableList<BranchSeeker.Node> = mutableListOf(), val storedData: MutableMap<NodeParameterKey<*, *>, Any?> = mutableMapOf())
A node within the execution tree. Each node represents an expectation that was executed.
Constructors
Link copied to clipboard
constructor(parent: BranchSeeker.Node?, title: String, status: BranchSeeker.Status? = null, message: String? = null, nodes: MutableList<BranchSeeker.Node> = mutableListOf(), storedData: MutableMap<NodeParameterKey<*, *>, Any?> = mutableMapOf())