| // Copyright 2024 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. | |
| @available(added=HEAD) | |
| library fuchsia.runtime.microbenchmarks; | |
| using zx; | |
| /// A fake FIDL device server for testing microbenchmarks against. | |
| @transport("Driver") | |
| closed protocol Device { | |
| /// Replies immediately with an empty response. | |
| strict Handshake() -> () error zx.Status; | |
| }; |