// // Copyright 2018 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. // // Type_test.cpp: // Tests for StaticType, TType and BasicType. // #include "angle_gl.h" #include "compiler/translator/PoolAlloc.h" #include "compiler/translator/StaticType.h" #include "compiler/translator/Types.h" #include "gtest/gtest.h" namespace sh { // Verify that mangled name matches between a vector/matrix TType and a corresponding StaticType. TEST(Type, VectorAndMatrixMangledNameConsistent) { … } // Verify that basic type mangled names are unique. TEST(Type, BaseTypeMangledNamesUnique) { … } } // namespace sh