blob: 9b0e375bf3df10c0d3380a3c8c5b87d4bbcad6d8 [file] [log] [blame]
// Copyright 2018 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.
#pragma once
#include <zxtest/base/test-driver.h>
namespace zxtest {
namespace internal {
// This is class provides an internal representation of |zxtest::Test|, where
// objects needed by the library are added. Preventing the test writer from
// accessing them.
class TestInternal {
public:
virtual ~TestInternal() = default;
protected:
TestDriver* driver_ = nullptr;
};
} // namespace internal
} // namespace zxtest