Package levenshtein

Examples of levenshtein.Levenshtein


    public LevenshteinCompilationTest() {
    }

    @Test(timeout = 10000)
    public void runTest() {
        Levenshtein levenshtein = new Levenshtein("nämlich", "dämlich");
        assertEquals("Incorrect result comparing nämlich and dämlich", 1, levenshtein.getDistance());
    }
View Full Code Here

TOP

Related Classes of levenshtein.Levenshtein

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.