chromium/third_party/blink/renderer/platform/loader/static_data_navigation_body_loader_test.cc

// Copyright 2019 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/loader/static_data_navigation_body_loader.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"

namespace blink {

class StaticDataNavigationBodyLoaderTest
    : public ::testing::Test,
      public WebNavigationBodyLoader::Client {};

TEST_F(StaticDataNavigationBodyLoaderTest, DataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest, WriteFromDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest,
       SetDefersLoadingAndWriteFromDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest,
       SetDefersLoadingWithBfcacheAndWriteFromDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest, DestroyFromDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest, SetDefersLoadingFromDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest,
       SetDefersLoadingWithBfcacheFromDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest, WriteThenStart) {}

TEST_F(StaticDataNavigationBodyLoaderTest,
       SetDefersLoadingFromFinishedDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest,
       SetDefersLoadingWithBfcacheFromFinishedDataReceived) {}

TEST_F(StaticDataNavigationBodyLoaderTest, StartDeferred) {}

TEST_F(StaticDataNavigationBodyLoaderTest, StartDeferredWithBackForwardCache) {}

TEST_F(StaticDataNavigationBodyLoaderTest, DestroyFromFinished) {}

TEST_F(StaticDataNavigationBodyLoaderTest, SetDefersLoadingFromFinished) {}

TEST_F(StaticDataNavigationBodyLoaderTest,
       SetDefersLoadingWithBfcacheFromFinished) {}
}  // namespace blink