MCPcopy Create free account
hub / github.com/microsoft/debugpy / test_lower_bound

Function test_lower_bound

tests/tests/test_timeline.py:401–410  ·  view source on GitHub ↗
(make_timeline)

Source from the content-addressed store, hash-verified

399
400
401def test_lower_bound(make_timeline):
402 timeline, _ = make_timeline()
403 timeline.mark("1")
404 timeline.mark("2")
405 timeline.mark("3")
406 timeline.freeze()
407
408 assert (Mark("2") >> (Mark("1") >> Mark("3"))) not in timeline
409 assert (Mark("2") >> (Mark("1") & Mark("3"))) not in timeline
410 assert (Mark("2") >> (Mark("1") ^ Mark("3"))) in timeline
411
412
413@pytest.mark.timeout(3)

Callers

nothing calls this directly

Calls 4

MarkFunction · 0.90
make_timelineFunction · 0.85
markMethod · 0.80
freezeMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…