// 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/web_package/signed_web_bundles/signed_web_bundle_utils.h" #include "testing/gtest/include/gtest/gtest.h" namespace web_package { namespace { constexpr uint8_t kFakeUnsignedWebBundleHash[] = …; constexpr uint8_t kFakeIntegrityBlockCbor[] = …; constexpr uint8_t kFakeAttributesCbor[] = …; constexpr uint8_t kExpectedSignaturePayload[] = …; } // namespace TEST(SignedWebBundleUtilsTest, BuildSignaturePayload) { … } } // namespace web_package