// Copyright 2014 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/iterator.h" #include <deque> #include "test/unittests/test-utils.h" namespace v8 { namespace base { TEST(IteratorTest, IteratorRangeEmpty) { … } TEST(IteratorTest, IteratorRangeArray) { … } TEST(IteratorTest, IteratorRangeDeque) { … } TEST(IteratorTest, IteratorTypeDeduction) { … } } // namespace base } // namespace v8