1 /* 2 * Copyright (c) 2022 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 "event_log_wrapper.h" 17 #include "if_system_ability_manager.h" 18 #include "iservice_registry.h" 19 #include "mock_common_event_stub.h" 20 #include "mock_system_ability_manager.h" 21 #include "refbase.h" 22 23 namespace OHOS { 24 25 using namespace OHOS::EventFwk; 26 using namespace OHOS::AppExecFwk; 27 GetSystemAbility(int32_t systemAbilityId)28sptr<IRemoteObject> MockSystemAbilityManager::GetSystemAbility(int32_t systemAbilityId) 29 { 30 EVENT_LOGI("enter"); 31 return MockCommonEventStub::GetInstance(); 32 } 33 GetSystemAbilityManager()34sptr<ISystemAbilityManager> SystemAbilityManagerClient::GetSystemAbilityManager() 35 { 36 EVENT_LOGI("enter"); 37 return sptr<MockSystemAbilityManager>(new MockSystemAbilityManager()); 38 } 39 } // namespace OHOS 40