1 /* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "system_ability_manager_mock.h" 17 18 namespace OHOS { SystemAbilityManagerMock()19SystemAbilityManagerMock::SystemAbilityManagerMock() 20 { 21 SystemAbilityManagerMock::mock_ = this; 22 } 23 ~SystemAbilityManagerMock()24SystemAbilityManagerMock::~SystemAbilityManagerMock() 25 { 26 SystemAbilityManagerMock::mock_ = nullptr; 27 } 28 GetMock()29SystemAbilityManagerMock *SystemAbilityManagerMock::GetMock() 30 { 31 return SystemAbilityManagerMock::mock_; 32 } 33 CheckSystemAbility(int32_t systemAbilityId)34sptr<IRemoteObject> SystemAbilityManager::CheckSystemAbility(int32_t systemAbilityId) 35 { 36 return SystemAbilityManagerMock::GetMock()->CheckSystemAbility(systemAbilityId); 37 } 38 LoadSystemAbility(int32_t systemAbilityId,const sptr<ISystemAbilityLoadCallback> & callback)39int32_t SystemAbilityManager::LoadSystemAbility(int32_t systemAbilityId, 40 const sptr<ISystemAbilityLoadCallback> &callback) 41 { 42 return SystemAbilityManagerMock::GetMock()->LoadSystemAbility(systemAbilityId, callback); 43 } 44 } // namespace OHOS 45