#include "net/base/network_delegate.h"
#include "net/cookies/canonical_cookie.h"
#include "net/cookies/canonical_cookie_test_helpers.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
_;
ElementsAre;
IsEmpty;
UnorderedElementsAre;
namespace {
constexpr char kURL[] = …;
CanonicalCookie MakeCookie(const std::string& name) { … }
CookieAccessResult Include() { … }
CookieAccessResult Exclude(CookieInclusionStatus::ExclusionReason reason) { … }
}
TEST(NetworkDelegateTest, ExcludeAllCookies) { … }
TEST(NetworkDelegateTest, MoveExcludedCookies) { … }
}