#include "content/services/auction_worklet/debug_command_queue.h"
#include <string>
#include <vector>
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "base/thread_annotations.h"
#include "content/services/auction_worklet/auction_v8_helper.h"
#include "testing/gmock/include/gmock/gmock-matchers.h"
#include "testing/gtest/include/gtest/gtest.h"
ElementsAre;
namespace auction_worklet {
class DebugCommandQueueTest : public testing::Test { … };
TEST_F(DebugCommandQueueTest, TopLevel) { … }
TEST_F(DebugCommandQueueTest, Paused) { … }
TEST_F(DebugCommandQueueTest, QueueFromV8Thread) { … }
TEST_F(DebugCommandQueueTest, QueueFromTask) { … }
TEST_F(DebugCommandQueueTest, QueueFromPauseTask) { … }
TEST_F(DebugCommandQueueTest, AbortPausesBeforePause) { … }
TEST_F(DebugCommandQueueTest, AbortPausesAfterPause) { … }
}