// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/network/trust_tokens/suitable_trust_token_origin.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" #include "url/origin.h" namespace network { TEST(SuitableTrustTokenOrigin, Suitable) { … } TEST(SuitableTrustTokenOrigin, Insecure) { … } TEST(SuitableTrustTokenOrigin, SecureButNeitherHttpNorHttps) { … } } // namespace network