# 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.
ShouldFail is a shortcut for running some action against a testbox.TestingT and asserting that it failed.
ShouldFailAndExitEarly is the same as ShouldFail, except that it also asserts that the test was terminated early with FailNow.

# 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.