blob: 66a7acf70892bc835e27ea50ddb5b04cf5f7f4b1 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package testrunner
import (
"time"
"fuchsia.googlesource.com/tools/runtests"
)
// TestResult is the result of executing a test.
type TestResult struct {
// Name is the name of the test that was executed.
Name string
// Result describes whether the test passed or failed.
Result runtests.TestResult
Stdout []byte
Stderr []byte
StartTime time.Time
EndTime time.Time
}