MCPcopy Create free account
hub / github.com/apache/qpid-proton-j / expect_until

Method expect_until

tests/python/proton_tests/engine.py:2274–2277  ·  view source on GitHub ↗
(self, *types)

Source from the content-addressed store, hash-verified

2272 assert False, "actual events %s did not match any of the expected sequences: %s" % (events, sequences)
2273
2274 def expect_until(self, *types):
2275 events = self.drain()
2276 etypes = tuple([e.type for e in events[-len(types):]])
2277 assert etypes == types, "actual events %s did not end in expect sequence: %s" % (events, types)
2278
2279class EventTest(CollectorTest):
2280

Callers 1

testLinkDetachMethod · 0.80

Calls 1

drainMethod · 0.95

Tested by

no test coverage detected