// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file contains the ResponseAnalyzerTests (which test the response // analyzer's behavior in several parameterized test scenarios) and at the end // includes the CrossOriginReadBlockingTests, which are more typical unittests. #include "services/network/orb/orb_sniffers.h" #include <initializer_list> #include <memory> #include <string> #include <string_view> #include <utility> #include <vector> #include "net/base/mime_sniffer.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" namespace network::orb { TEST(OrbSnifferTest, SniffForHTML) { … } TEST(OrbSnifferTest, SniffForXML) { … } TEST(OrbSnifferTest, SniffForJSON) { … } } // namespace network::orb