blob: 6e9ea058b4be3105f0b092a47e5a8a3c51f39993 [file] [log] [blame]
// Copyright 2020 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.camera.test;
using fuchsia.hardware.camera;
/// This interface provides manipulation methods for a standard DeviceWatcher. This is intended for
/// test purposes only.
@discoverable
protocol DeviceWatcherTester {
/// Inserts the given controller implementation as a new device.
InjectDevice(resource struct {
camera client_end:fuchsia.hardware.camera.Device;
});
};