// 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 "components/subresource_filter/core/common/first_party_origin.h" #include "base/strings/string_number_conversions.h" #include "testing/gtest/include/gtest/gtest.h" namespace subresource_filter { TEST(FirstPartyOriginTest, AllSameDomain) { … } TEST(FirstPartyOriginTest, AllFirstParty) { … } TEST(FirstPartyOriginTest, AllThirdParty) { … } TEST(FirstPartyOriginTest, MixedFirstAndThirdParties) { … } TEST(FirstPartyOriginTest, EmptyHostUrls) { … } } // namespace subresource_filter