summaryrefslogtreecommitdiffstats
path: root/tests/auto/qregexpvalidator/tst_qregexpvalidator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qregexpvalidator/tst_qregexpvalidator.cpp')
-rw-r--r--tests/auto/qregexpvalidator/tst_qregexpvalidator.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qregexpvalidator/tst_qregexpvalidator.cpp b/tests/auto/qregexpvalidator/tst_qregexpvalidator.cpp
index d8ef92a439..23cd5b1ef1 100644
--- a/tests/auto/qregexpvalidator/tst_qregexpvalidator.cpp
+++ b/tests/auto/qregexpvalidator/tst_qregexpvalidator.cpp
@@ -115,9 +115,12 @@ void tst_QRegExpValidator::validate()
QFETCH( int, state );
QRegExpValidator rv( 0 );
+ QSignalSpy spy(&rv, SIGNAL(regExpChanged(const QRegExp&)));
+
rv.setRegExp( QRegExp( rx ) );
int dummy;
QCOMPARE( (int)rv.validate( value, dummy ), state );
+ QCOMPARE(spy.count(), 1);
}
QTEST_MAIN(tst_QRegExpValidator)