blob: 13c6d09151ca43787fe0a936e10b39705279a626 [file] [log] [blame]
// Copyright 2019 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.
#ifndef SRC_CAMERA_DRIVERS_HW_ACCEL_GDC_TEST_GDC_TEST_H_
#define SRC_CAMERA_DRIVERS_HW_ACCEL_GDC_TEST_GDC_TEST_H_
#include <zxtest/zxtest.h>
#include <memory>
namespace gdc {
// |GdcDeviceTester| is spawned by the driver in |gdc.cpp|
class GdcDevice;
class GdcDeviceTester : public zxtest::Test {
public:
static zx_status_t RunTests(GdcDevice* device);
protected:
// Setup & TearDown
void SetUp();
void TearDown();
};
} // namespace gdc
#endif // SRC_CAMERA_DRIVERS_HW_ACCEL_GDC_TEST_GDC_TEST_H_