def test_tagger_any_multi_token_mentions():
    config = {
        'tagger_id': 'lingpipe',
        'annotator_id': 'bagga-and-baldwin',
        'chain_selector': 'ANY_MULTI_TOKEN',
    }
    transform = name_align_labels(config)
    _test_tagger_transform(transform)
def test_name_align_labels():
    config = _test_config()
    transform = name_align_labels(config)
    _test_tagger_transform(transform)