// // Copyright 2015 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. // // Unit tests for ANGLE's Optional helper class. // #include "gmock/gmock.h" #include "gtest/gtest.h" #include "common/Optional.h" namespace { TEST(OptionalTest, BasicInvalid) { … } TEST(OptionalTest, BasicValid) { … } TEST(OptionalTest, Copies) { … } } // namespace