def should_intersect_false(list_one: List[int], *list_items: int): result = CommonCollectionUtils.intersects(list_one, *list_items) CommonAssertionUtils.is_false(result)
def should_intersect_true(list_one, *list_items): result = CommonCollectionUtils.intersects(list_one, *list_items) CommonAssertionUtils.is_true(result)