// Copyright 2019 the V8 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. #include "src/base/vector.h" #include <algorithm> #include "testing/gmock-support.h" namespace v8 { namespace base { TEST(VectorTest, Factories) { … } // Test operator== and operator!= on different Vector types. TEST(VectorTest, Equals) { … } TEST(OwnedVectorTest, Equals) { … } TEST(OwnedVectorTest, MoveConstructionAndAssignment) { … } // Test that the constexpr factory methods work. TEST(VectorTest, ConstexprFactories) { … } } // namespace base } // namespace v8