// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/wtf/sequence_bound.h" #include "base/task/single_thread_task_runner.h" #include "base/task/thread_pool.h" #include "base/test/task_environment.h" #include "testing/gtest/include/gtest/gtest.h" namespace WTF { namespace { constexpr int kTestValue = …; struct Foo { … }; } // namespace class SequenceBoundTest : public testing::Test { … }; TEST_F(SequenceBoundTest, CanInstantiate) { … } } // namespace WTF