Details
Description
Pasted from source bug:
SOFTWARE VERSION:
QtMOBILITY 1.1
STEPS LEADING TO PROBLEM:
// Verify that both type and home are converted to upper case.
QString name(QString::fromAscii("type"));
QString value1(QString::fromAscii("home"));
QVersitProperty property;
property.insertParameter(name,value1);
QMultiHash<QString,QString> parameters = property.parameters();
QCOMPARE(property.parameters().count(),1);
QVERIFY(parameters.contains(QLatin1String("TYPE"),QLatin1String("HOME")));
EXPECTED OUTCOME:
Both Value and name must be converted upper case.
ACTUAL OUTCOME:
ONly name is converted to Uppercase, But Value is not convereted to Uppercase.
Document says:
void QVersitProperty::insertParameter ( const QString & name, const QString &
value )
Adds a new parameter with name and value. Both the name and the value are
converted to upper-case.