delete ShowWindow test

Signed-off-by: qinlong <qinlong15@huawei.com>
This commit is contained in:
qinlong
2022-03-21 15:43:08 +08:00
parent cf30f8fcfa
commit c8d5c821ed
@@ -58,32 +58,6 @@ HWTEST_F(ScreenClientWindowAdapterTest, CreateWindow_002, TestSize.Level1)
EXPECT_NE(surface, actualSurface);
}
/**
* @tc.name: ShowWindow_001
* @tc.desc: Verify the ShowWindow function.
* @tc.type: FUNC
* @tc.require: Issue Number
*/
HWTEST_F(ScreenClientWindowAdapterTest, ShowWindow_001, TestSize.Level1)
{
int32_t windowId = 0;
int32_t actual = ScreenClientWindowAdapter::GetInstance().ShowWindow(windowId);
EXPECT_EQ(ERR_DH_SCREEN_SCREENCLIENT_SHOW_WINDOW_ERROR, actual);
}
/**
* @tc.name: ShowWindow_002
* @tc.desc: Verify the ShowWindow function.
* @tc.type: FUNC
* @tc.require: Issue Number
*/
HWTEST_F(ScreenClientWindowAdapterTest, ShowWindow_002, TestSize.Level1)
{
int32_t windowId = 1;
int32_t actual = ScreenClientWindowAdapter::GetInstance().ShowWindow(windowId);
EXPECT_EQ(DH_SUCCESS, actual);
}
/**
* @tc.name: MoveWindow_001
* @tc.desc: Verify the MoveWindow function.