vickumar1981 / stringdistance

A fuzzy matching string distance library for Scala and Java that includes Levenshtein distance, Jaro distance, Jaro-Winkler distance, Dice coefficient, N-Gram similarity, Cosine similarity, Jaccard similarity, Longest common subsequence, Hamming distance, and more..
https://vickumar1981.github.io/stringdistance/api/com/github/vickumar1981/stringdistance/index.html
Other
78 stars 15 forks source link

Add tests around phonetic similarity #8

Closed vickumar1981 closed 4 years ago

vickumar1981 commented 6 years ago

The tests for the phonetic similarities - soundex and metaphone are sparse. Need to add more tests/examples to make sure those are working as expected.

https://github.com/vickumar1981/stringdistance/blob/master/src/test/scala/fixtures/TestSoundCases.scala#L8

Can also enable/use (currently, disabled for phonetic similarities only) the coverage report to see what part of the algorithms is untested.

vickumar1981 commented 4 years ago

Addressed by https://github.com/vickumar1981/stringdistance/pull/53