// Copyright 2023 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/fetch/resource_request_utils.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/blink/renderer/platform/loader/fetch/resource.h" namespace blink { // Check all of the resource types that are NOT supposed to be loaded // incrementally TEST(ShouldLoadIncrementalTest, PriorityNotIncremental) { … } // Check all of the resource types that ARE supposed to be loaded // incrementally TEST(ShouldLoadIncrementalTest, PriorityIncremental) { … } } // namespace blink