chromium/third_party/blink/renderer/modules/background_fetch/background_fetch_manager_test.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 "third_party/blink/renderer/modules/background_fetch/background_fetch_manager.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_testing.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_request_init.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_request_requestorusvstringsequence_usvstring.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_request_usvstring.h"
#include "third_party/blink/renderer/core/fetch/request.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/blob/blob_data.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

class BackgroundFetchManagerTest : public testing::Test {};

TEST_F(BackgroundFetchManagerTest, SingleUSVString) {}

TEST_F(BackgroundFetchManagerTest, SingleRequest) {}

TEST_F(BackgroundFetchManagerTest, Sequence) {}

TEST_F(BackgroundFetchManagerTest, SequenceEmpty) {}

TEST_F(BackgroundFetchManagerTest, BlobsExtracted) {}

}  // namespace blink