File indexing completed on 2024-04-28 17:01:43

0001 /*
0002 SPDX-FileCopyrightText: 2011 Dmitry Risenberg <dmitry.risenberg@gmail.com>
0003 
0004 SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef LEVENSHTEINTEST_H
0008 #define LEVENSHTEINTEST_H
0009 
0010 #include <QObject>
0011 
0012 class LevenshteinTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testFirstEmptyString();
0017     void testSecondEmptyString();
0018     void testDifferenceStrings();
0019     void testStringLists();
0020     void testSmth();
0021 };
0022 
0023 #endif //  LEVENSHTEINTEST_H