mirror of
https://github.com/openharmony/telephony_cellular_data.git
synced 2026-08-25 09:04:03 -04:00
a40db9c54f
Signed-off-by: h30022575 <hanxuejian3@huawei.com>
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2024 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#define private public
|
|
#define protected public
|
|
|
|
#include <gtest/gtest.h>
|
|
#include "sim_account_callback_proxy.h"
|
|
|
|
namespace OHOS {
|
|
namespace Telephony {
|
|
using namespace testing::ext;
|
|
|
|
class SimAccountCallbackProxyTest : public testing::Test {
|
|
public:
|
|
SimAccountCallbackProxyTest() = default;
|
|
~SimAccountCallbackProxyTest() = default;
|
|
};
|
|
|
|
HWTEST_F(SimAccountCallbackProxyTest, SimAccountCallbackProxy_01, Function | MediumTest | Level1)
|
|
{
|
|
std::u16string des = SimAccountCallbackProxy::GetDescriptor();
|
|
std::cout << "SimAccountCallbackProxy_01 Descriptor " << des.c_str() << std::endl;
|
|
SimAccountCallbackProxy *proxy = new SimAccountCallbackProxy(nullptr);
|
|
proxy->OnSimAccountChanged();
|
|
ASSERT_FALSE(des.length() == 0);
|
|
}
|
|
|
|
} // namespace Telephony
|
|
} // namespace OHOS
|