TestCallTree

utest.framework.TestCallTree
class TestCallTree(inner: => Either[Any, IndexedSeq[TestCallTree]])

The executable portion of a tree of tests. Each node contains an executable, which when run either returns a Left(result) or a Right(sequence) of child nodes which you can execute.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def evalInner(): Either[Any, IndexedSeq[TestCallTree]]
def mapInner(f: (Either[Any, IndexedSeq[TestCallTree]]) => Either[Any, IndexedSeq[TestCallTree]]): TestCallTree
def run(path: List[Int]): Any

Runs the test in this TestCallTree at the specified path. Called by the TestTreeSeq.run method and usually not called manually.

Runs the test in this TestCallTree at the specified path. Called by the TestTreeSeq.run method and usually not called manually.

Attributes