當前位置: 首頁>>代碼示例>>Python>>正文


Python mocks.MockDevice類代碼示例

本文整理匯總了Python中mocks.MockDevice的典型用法代碼示例。如果您正苦於以下問題:Python MockDevice類的具體用法?Python MockDevice怎麽用?Python MockDevice使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了MockDevice類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: testUiViewServerDump_windowIntM1

 def testUiViewServerDump_windowIntM1(self):
     try:
         device = MockDevice(version=15, startviewserver=True)
         vc = ViewClient(device, device.serialno, adb=TRUE, autodump=False)
         vc.dump(window=-1)
         vc.findViewByIdOrRaise('id/home')
     finally:
         device.shutdownMockViewServer()
開發者ID:jablaze,項目名稱:AndroidViewClient,代碼行數:8,代碼來源:viewclient.py

示例2: testFindViewsContainingPoint_filterApi15

 def testFindViewsContainingPoint_filterApi15(self):
     try:
         device = MockDevice(version=15, startviewserver=True)
         vc = ViewClient(device, device.serialno, adb=TRUE)
         list = vc.findViewsContainingPoint((200, 200), filter=View.isClickable)
         self.assertNotEquals(None, list)
         self.assertNotEquals(0, len(list))
     finally:
         device.shutdownMockViewServer()
開發者ID:jablaze,項目名稱:AndroidViewClient,代碼行數:9,代碼來源:viewclient.py

示例3: testUiViewServerDump_windowIntStr

 def testUiViewServerDump_windowIntStr(self):
     device = None
     try:
         device = MockDevice(version=15, startviewserver=True)
         vc = ViewClient(device, device.serialno, adb=TRUE, autodump=False)
         vc.dump(window='0xb52f7c88')
         vc.findViewByIdOrRaise('id/status_bar')
     finally:
         if device:
             device.shutdownMockViewServer()
開發者ID:DavidTao99,項目名稱:AndroidViewClient,代碼行數:10,代碼來源:viewclienttests.py

示例4: testGetProperty_displayHeight

 def testGetProperty_displayHeight(self):
     device = MockDevice()
     self.assertEqual(1184, device.getProperty('display.height'))
開發者ID:DavidTao99,項目名稱:AndroidViewClient,代碼行數:3,代碼來源:viewclienttests.py

示例5: testGetProperty_displayWidth

 def testGetProperty_displayWidth(self):
     device = MockDevice()
     self.assertEqual(768, device.getProperty('display.width'))
開發者ID:DavidTao99,項目名稱:AndroidViewClient,代碼行數:3,代碼來源:viewclienttests.py


注:本文中的mocks.MockDevice類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。