# Functions

RealTest provides an implementation of TestingT for running test logic in a regular test context.
SandboxTest runs a test function against a TestingT instance that applies only to the scope of that test.

# Structs

LogItem describes either a failed assertion or a skip that happened during SandboxTest.
SandboxResult describes the aggregate test state produced by calling SandboxTest.

# Interfaces

TestingT is a subset of the testing.T interface that allows tests to run in either a real test context, or a mock test scope that is decoupled from the regular testing framework (SandboxTest).

# Type aliases

TestPath identifies the level of test that failed or skipped.