Searched refs:any_order (Results 1 – 12 of 12) sorted by relevance
/external/python/mock/mock/tests/ |
D | testmock.py | 1098 mock.assert_has_calls([kall], any_order=True) 1103 [kall], any_order=True 1113 mock.assert_has_calls(kall_list, any_order=True) 1124 kall_list, any_order=True 1182 mock.assert_has_calls(calls, any_order=True) 1184 mock.assert_has_calls(calls[1:], any_order=True) 1186 mock.assert_has_calls(calls[:-1], any_order=True) 1191 mock.assert_has_calls(calls, any_order=True) 1194 mock.assert_has_calls(calls[1:], any_order=True) 1197 mock.assert_has_calls(calls[:-1], any_order=True)
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmock.py | 1236 mock.assert_has_calls([kall], any_order=True) 1241 [kall], any_order=True 1251 mock.assert_has_calls(kall_list, any_order=True) 1262 kall_list, any_order=True 1320 mock.assert_has_calls(calls, any_order=True) 1322 mock.assert_has_calls(calls[1:], any_order=True) 1324 mock.assert_has_calls(calls[:-1], any_order=True) 1329 mock.assert_has_calls(calls, any_order=True) 1332 mock.assert_has_calls(calls[1:], any_order=True) 1335 mock.assert_has_calls(calls[:-1], any_order=True)
|
/external/autotest/server/hosts/ |
D | afe_store_unittest.py | 76 any_order=True)
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | debug_data_test.py | 304 fake.assert_has_calls(expected_calls, any_order=True)
|
/external/tensorflow/tensorflow/contrib/opt/python/training/ |
D | external_optimizer_test.py | 336 loss_callback.assert_has_calls(loss_calls, any_order=True)
|
/external/pdfium/third_party/pymock/ |
D | mock.py | 849 def assert_has_calls(self, calls, any_order=False): argument 859 if not any_order:
|
/external/python/cpython2/Lib/test/ |
D | _mock_backport.py | 801 def assert_has_calls(self, calls, any_order=False): argument 813 if not any_order:
|
/external/python/cpython3/Lib/unittest/ |
D | mock.py | 843 def assert_has_calls(self, calls, any_order=False): argument 856 if not any_order:
|
/external/python/mock/mock/ |
D | mock.py | 951 def assert_has_calls(self, calls, any_order=False): argument 964 if not any_order:
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 334 .. method:: assert_has_calls(calls, any_order=False) 339 If *any_order* is false (the default) then the calls must be 343 If *any_order* is true then the calls can be in any order, but 354 >>> mock.assert_has_calls(calls, any_order=True)
|
D | unittest.mock-examples.rst | 1181 order. In this case you can pass ``any_order=True`` to ``assert_has_calls``: 1187 >>> m.assert_has_calls(calls, any_order=True)
|
/external/python/cpython3/Lib/test/ |
D | test_tarfile.py | 2591 any_order=True) 2611 any_order=True)
|