File indexing completed on 2024-04-21 05:44:11

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 // Qt
0011 #include <QObject>
0012 
0013 class LevenshteinTest : public QObject
0014 {
0015     Q_OBJECT
0016 private Q_SLOTS:
0017     void testFirstEmptyString();
0018     void testSecondEmptyString();
0019     void testDifferenceStrings();
0020     void testStringLists();
0021     void testSmth();
0022 };
0023 
0024 #endif //  LEVENSHTEINTEST_H