// 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 <vector> #include "components/web_package/signed_web_bundles/ed25519_public_key.h" #include "testing/gtest/include/gtest/gtest.h" namespace web_package { namespace { constexpr std::array<uint8_t, 32> kPublicKey1 = …; constexpr std::array<uint8_t, 32> kPublicKey2 = …; } // namespace TEST(Ed25519PublicKeyTest, ValidPublicKey) { … } TEST(Ed25519PublicKeyTest, Comparators) { … } TEST(Ed25519PublicKeyTest, InvalidPublicKey) { … } } // namespace web_package