// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gfx/x/property_cache.h" #include <memory> #include "base/memory/raw_ptr.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/x/atom_cache.h" #include "ui/gfx/x/connection.h" #include "ui/gfx/x/xproto.h" namespace x11 { class PropertyCacheTest : public testing::Test { … }; TEST_F(PropertyCacheTest, GetSync) { … } TEST_F(PropertyCacheTest, GetAsync) { … } TEST_F(PropertyCacheTest, Event) { … } TEST_F(PropertyCacheTest, GetAs) { … } } // namespace x11