blob: d8315ade1c4c25c4847eeae90990fb88b374dba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include <QtTest/QtTest>
#include <QtCore/QtCore>
//int getSimilarityScore(const QString &str1, const char* str2);
#include "../shared/simtexth.h"
#include "tst_linguist.h"
void tst_linguist::simtexth()
{
QFETCH(QString, one);
QFETCH(QString, two);
QFETCH(int, expected);
int measured = getSimilarityScore(one, two.toLatin1());
QCOMPARE(measured, expected);
}
void tst_linguist::simtexth_data()
{
using namespace QTest;
addColumn<QString>("one");
addColumn<QString>("two");
addColumn<int>("expected");
newRow("00") << "" << "" << 1024;
newRow("01") << "a" << "a" << 1024;
newRow("02") << "ab" << "ab" << 1024;
newRow("03") << "abc" << "abc" << 1024;
newRow("04") << "abcd" << "abcd" << 1024;
}
|