chromium/components/origin_trials/common/persisted_trial_token_unittest.cc

// Copyright 2022 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/origin_trials/common/persisted_trial_token.h"

#include <string>

#include "base/containers/flat_set.h"
#include "base/strings/to_string.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/origin_trials/trial_token.h"
#include "url/origin.h"

namespace origin_trials {

namespace {

const char kTrialTopLevelSite[] =;

TEST(PersistedTrialTokenTest, ConstructFromBlinkToken) {}

TEST(PersistedTrialTokenTest, Partitioning) {}

TEST(PersistedTrialTokenTest, TestLessThan) {}

TEST(PersistedTrialTokenTest, TestEquals) {}

TEST(PersistedTrialTokenTest, StreamOperatorTest) {}

}  // namespace

}  // namespace origin_trials