chromium/third_party/blink/renderer/platform/loader/cors/cors_test.cc

// Copyright 2016 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/cors/cors.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/fetch/fetch_api_request.mojom-blink.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource_response.h"

namespace blink {

namespace {

class CorsExposedHeadersTest : public testing::Test {};

TEST_F(CorsExposedHeadersTest, ValidInput) {}

TEST_F(CorsExposedHeadersTest, DuplicatedEntries) {}

TEST_F(CorsExposedHeadersTest, InvalidInput) {}

TEST_F(CorsExposedHeadersTest, WithEmptyElements) {}

TEST_F(CorsExposedHeadersTest, Wildcard) {}

TEST_F(CorsExposedHeadersTest, Asterisk) {}

}  // namespace

}  // namespace blink