// Copyright 2022 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. | |
library fuchsia.developer.ffx; | |
/// Internal testing functionality for the underlying FFX daemon. | |
@discoverable | |
protocol Testing { | |
/// Causes the daemon to hang (pausing all execution indefinitely). | |
Hang() -> (); | |
/// Crashes the daemon by intentionally invoking a rust panic. | |
Crash() -> (); | |
}; |