// 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/segmentation_platform/embedder/default_model/search_user_model.h" #include "components/segmentation_platform/embedder/default_model/default_model_test_base.h" namespace segmentation_platform { class SearchUserModelTest : public DefaultModelTestBase { … }; TEST_F(SearchUserModelTest, InitAndFetchModel) { … } // Segmentation Ukm Engine is disabled on CrOS. #if !BUILDFLAG(IS_CHROMEOS) TEST_F(SearchUserModelTest, VerifyMetadata) { … } #endif //! BUILDFLAG(IS_CHROMEOS) TEST_F(SearchUserModelTest, ExecuteModelWithInput) { … } } // namespace segmentation_platform