// // 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. // // FixedVector_unittest: // Tests of the FixedVector class // #include <gtest/gtest.h> #include "common/FixedVector.h" namespace angle { // Make sure the various constructors compile and do basic checks TEST(FixedVector, Constructors) { … } // Test indexing operations (at, operator[]) TEST(FixedVector, Indexing) { … } // Test the push_back functions TEST(FixedVector, PushBack) { … } // Test the pop_back function TEST(FixedVector, PopBack) { … } // Test the back function TEST(FixedVector, Back) { … } // Test the sizing operations TEST(FixedVector, Size) { … } // Test clearing the vector TEST(FixedVector, Clear) { … } // Test resizing the vector TEST(FixedVector, Resize) { … } // Test iterating over the vector TEST(FixedVector, Iteration) { … } // Test the "full" method. TEST(FixedVector, Full) { … } } // namespace angle