export declare class TestResult implements ILogTarget {
/** The actual test's name or description. */
/** The indicator to see if the test passed. */
/** The indicated to see if a test actually ran. */
/** The reported actual value description, if it failed. */
actual: ReflectedValue | null;
/** The reported expected value description, if it failed. */
expected: ReflectedValue | null;
/** If the test failed, this is the message describing why the test failed. */
/** A set of logged values during the test. */
/** The generated stack trace if the test errored. */
/** This value is set to true if the test is expected to throw. */
/** This is the timestamp for when the test started in milliseconds. */
/** This is the timestamp for when the test ended in milliseconds. */
/** This is the run time for the test in milliseconds. */
/** A set of errors that were reported for this test. */
/** A set of warnings that were reported for this test. */