equal
deleted
inserted
replaced
15 * Stub for EAP method configuration QT interface |
15 * Stub for EAP method configuration QT interface |
16 * |
16 * |
17 */ |
17 */ |
18 |
18 |
19 /* |
19 /* |
20 * %version: 6 % |
20 * %version: 7 % |
21 */ |
21 */ |
22 |
22 |
23 #include <QList> |
23 #include <QList> |
24 #include <QDebug> |
24 #include <QDebug> |
25 #include <QTest> |
25 #include <QTest> |
33 const EapBearerType bearerType, |
33 const EapBearerType bearerType, |
34 const int iapId) |
34 const int iapId) |
35 { |
35 { |
36 mCalledMethods.append("EapQtConfigInterface"); |
36 mCalledMethods.append("EapQtConfigInterface"); |
37 QCOMPARE(bearerType, EapQtConfigInterface::EapBearerTypeWlan); |
37 QCOMPARE(bearerType, EapQtConfigInterface::EapBearerTypeWlan); |
38 QCOMPARE(iapId, EapQtConfigInterface::IapIdUndefined); |
38 int tmp = EapQtConfigInterface::IapIdUndefined; |
|
39 QCOMPARE(iapId, tmp); |
39 } |
40 } |
40 |
41 |
41 EapQtConfigInterface::~EapQtConfigInterface() |
42 EapQtConfigInterface::~EapQtConfigInterface() |
42 { |
43 { |
43 mCalledMethods.append("~EapQtConfigInterface"); |
44 mCalledMethods.append("~EapQtConfigInterface"); |