blob: 0f5ad536e536b61006950b38a0b9bd80037fcc7e [file]
// Copyright 2021 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.
#include <gtest/gtest.h>
#include <sdk/lib/device-watcher/cpp/device-watcher.h>
// [START example]
TEST(SimpleDriverTestRealmTest, DriversExist) {
fbl::unique_fd out;
ASSERT_EQ(ZX_OK, device_watcher::RecursiveWaitForFile("/dev/sys/test", &out));
}
// [END example]