blob: 730d97f7ade1ae04df2f1b84209fa90893350f97 [file] [log] [blame] [edit]
// 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 meta
import (
"context"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: LocalRemoteFixture,
Desc: "Tests local tests can depend on remote fixtures",
Contacts: []string{"oka@chromium.org", "tast-owners@google.com"},
Fixture: "metaRemote",
})
}
func LocalRemoteFixture(ctx context.Context, s *testing.State) {
s.Log("Hello test")
}