// // Copyright 2016 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // Observer_unittest: // Unit tests for Observers and related classes. #include <gtest/gtest.h> #include "libANGLE/Observer.h" usingnamespaceangle; usingnamespacetesting; namespace { struct ObserverClass : public ObserverInterface { … }; // Test that Observer/Subject state change notifications work. TEST(ObserverTest, BasicUsage) { … } } // anonymous namespace