// 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. #include "base/token.h" #include "base/pickle.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { // Verifies that we can support constexpr Token construction. constexpr Token kTestToken{ … }; TEST(TokenTest, Constructors) { … } TEST(TokenTest, Equality) { … } TEST(TokenTest, Ordering) { … } TEST(TokenTest, ToString) { … } TEST(TokenTest, FromString) { … } TEST(TokenTest, Pickle) { … } } // namespace base