def test_notSimilarAuthor():
    result = generalSimilarity.sameAuthor("Max Mustermann",
                                          "Isabell Mustermann")
    assert result == 0
def test_notSameAuthor():
    result = generalSimilarity.sameAuthor("Alexander Müller", "Lisa Baum")
    assert result == 0
def test_sameAuthorFalse():
    result = generalSimilarity.sameAuthor("Maria Lilly", "Maria Li")
    assert result == 0
def test_sameAuthorTrue():
    result = generalSimilarity.sameAuthor("Max Mustermann", "Max Mustermann")
    assert result == 1