// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ipcz/driver_memory.h" #include "ipcz/driver_memory_mapping.h" #include "test/mock_driver.h" #include "test/test.h" #include "testing/gtest/include/gtest/gtest.h" #include "util/ref_counted.h" namespace ipcz { namespace { _; Return; class DriverMemoryTest : public test::Test { … }; TEST_F(DriverMemoryTest, Invalid) { … } TEST_F(DriverMemoryTest, AcquireFromObject) { … } TEST_F(DriverMemoryTest, Allocate) { … } TEST_F(DriverMemoryTest, Clone) { … } TEST_F(DriverMemoryTest, Map) { … } } // namespace } // namespace ipcz