// Copyright 2024 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/sync/base/deletion_origin.h" #include <string> #include <string_view> #include "base/hash/hash.h" #include "base/location.h" #include "components/sync/protocol/deletion_origin.pb.h" #include "testing/gtest/include/gtest/gtest.h" namespace syncer { namespace { TEST(DeletionOriginTest, ShouldDistinguishSpecifiedFromUnspecified) { … } TEST(DeletionOriginTest, ShouldConvertToProto) { … } TEST(DeletionOriginTest, ShouldTruncateFileName) { … } } // namespace } // namespace syncer