def test_get_map_type_by_domain_type_wrong():
    index = Index()
    index.parse(build_map())
    assert index.get_map_type_by_domain_type('BankApp', 'wrong') == ""
def test_get_map_type_by_domain_type():
    index = Index()
    index.parse(build_map())
    assert index.get_map_type_by_domain_type('BankApp', 'conta') == "Conta"