chromium/components/webapps/browser/installable/installable_task_queue_unittest.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/webapps/browser/installable/installable_task_queue.h"

#include "components/webapps/browser/installable/installable_manager.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace webapps {

// A POD struct which holds booleans for creating and comparing against
// a (move-only) InstallableTask.
struct TaskParams {};

// Constructs an InstallableTask, with the supplied bools stored in it.
std::unique_ptr<InstallableTask> CreateTask(const TaskParams& task_params) {}

bool IsEqual(const TaskParams& params, const InstallableTask& task) {}

class InstallableTaskQueueUnitTest : public testing::Test {};

TEST_F(InstallableTaskQueueUnitTest, NextDiscardsTask) {}

}  // namespace webapps