summaryrefslogtreecommitdiff
path: root/tests/manual/qserialportinfo/tst_qserialportinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qserialportinfo/tst_qserialportinfo.cpp')
-rw-r--r--tests/manual/qserialportinfo/tst_qserialportinfo.cpp21
1 files changed, 20 insertions, 1 deletions
diff --git a/tests/manual/qserialportinfo/tst_qserialportinfo.cpp b/tests/manual/qserialportinfo/tst_qserialportinfo.cpp
index c73aa00..1908dc0 100644
--- a/tests/manual/qserialportinfo/tst_qserialportinfo.cpp
+++ b/tests/manual/qserialportinfo/tst_qserialportinfo.cpp
@@ -54,6 +54,7 @@ class tst_QSerialPortInfo : public QObject
private slots:
void serialPortInfoList();
+ void standardBaudRateList();
void constructors();
void assignment();
};
@@ -64,9 +65,27 @@ void tst_QSerialPortInfo::serialPortInfoList()
QCOMPARE(list.isEmpty(), false);
}
+void tst_QSerialPortInfo::standardBaudRateList()
+{
+ QList<qint32> list(QSerialPortInfo::standardBaudRates());
+ QCOMPARE(list.isEmpty(), false);
+}
+
void tst_QSerialPortInfo::constructors()
{
- // FIXME
+ QSerialPortInfo serialPortInfo;
+ QCOMPARE(serialPortInfo.portName().isEmpty(), true);
+ QCOMPARE(serialPortInfo.systemLocation().isEmpty(), true);
+ QCOMPARE(serialPortInfo.description().isEmpty(), true);
+ QCOMPARE(serialPortInfo.manufacturer().isEmpty(), true);
+ QCOMPARE(serialPortInfo.serialNumber().isEmpty(), true);
+ QCOMPARE(serialPortInfo.vendorIdentifier(), quint16(0));
+ QCOMPARE(serialPortInfo.productIdentifier(), quint16(0));
+ QCOMPARE(serialPortInfo.hasVendorIdentifier(), false);
+ QCOMPARE(serialPortInfo.hasProductIdentifier(), false);
+ QCOMPARE(serialPortInfo.isNull(), false);
+ QCOMPARE(serialPortInfo.isBusy(), false);
+ QCOMPARE(serialPortInfo.isValid(), false);
}
void tst_QSerialPortInfo::assignment()