chromium/services/network/trust_tokens/trust_token_key_filtering_unittest.cc

// 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 <vector>

#include "base/ranges/algorithm.h"
#include "base/test/task_environment.h"
#include "services/network/public/mojom/trust_tokens.mojom-forward.h"
#include "services/network/public/mojom/trust_tokens.mojom.h"
#include "services/network/trust_tokens/trust_token_key_filtering.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace network {

TEST(TrustTokenKeyFiltering, EmptyContainer) {}

TEST(TrustTokenKeyFiltering, KEqualsZero) {}

TEST(TrustTokenKeyFiltering, Simple) {}

TEST(TrustTokenKeyFiltering, ExpiredKey) {}

TEST(TrustTokenKeyFiltering, JustBarelyExpiredKey) {}

TEST(TrustTokenKeyFiltering, PrioritizesSoonerToExpire) {}

TEST(TrustTokenKeyFiltering, MixOfPastAndFutureKeys) {}

TEST(TrustTokenKeyFiltering, BreaksTiesBasedOnBody) {}

}  // namespace network