blob: 003584d6016f053b8104ebe1dca2edca6cb70ea6 [file] [log] [blame]
// Copyright 2021 The Chromium OS 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 firmware
import (
"context"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: CodelabBasic,
Desc: "Demonstrates common functionality for remote firmware tests",
Contacts: []string{
"me@chromium.org", // Test author
"my-team@chromium.org", // Backup mailing list
},
Attr: []string{"group:firmware", "firmware_experimental"},
})
}
// CodelabBasic initializes a basic remote firmware test.
func CodelabBasic(ctx context.Context, s *testing.State) {
s.Log("FAFT stands for Fully Automated Firmware Test")
}