diff options
Diffstat (limited to 'tests/accountstest.cpp')
-rw-r--r-- | tests/accountstest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/accountstest.cpp b/tests/accountstest.cpp index 029b92f..cce5c7b 100644 --- a/tests/accountstest.cpp +++ b/tests/accountstest.cpp | |||
@@ -76,6 +76,9 @@ private slots: | |||
76 | 76 | ||
77 | Store::fetchAll<Identity>(Query()).syncThen<void, QList<Identity::Ptr>>([&](const QList<Identity::Ptr> &identities) { | 77 | Store::fetchAll<Identity>(Query()).syncThen<void, QList<Identity::Ptr>>([&](const QList<Identity::Ptr> &identities) { |
78 | QCOMPARE(identities.size(), 1); | 78 | QCOMPARE(identities.size(), 1); |
79 | QCOMPARE(identities.first()->getName(), smtpServer); | ||
80 | QCOMPARE(identities.first()->getAddress(), smtpUsername); | ||
81 | QCOMPARE(identities.first()->getAccount(), account.identifier()); | ||
79 | }) | 82 | }) |
80 | .exec().waitForFinished(); | 83 | .exec().waitForFinished(); |
81 | 84 | ||