tests/auto/qregexp/tst_qregexp.cpp
changeset 37 758a864f9613
parent 30 5dc02b23752f
--- a/tests/auto/qregexp/tst_qregexp.cpp	Fri Sep 17 08:34:18 2010 +0300
+++ b/tests/auto/qregexp/tst_qregexp.cpp	Mon Oct 04 01:19:32 2010 +0300
@@ -105,6 +105,7 @@
 
     void QTBUG_7049_data();
     void QTBUG_7049();
+    void interval();
 };
 
 // Testing get/set functions
@@ -1426,5 +1427,22 @@
     QCOMPARE( re.cap(2), cap2 );
 }
 
+void tst_QRegExp::interval()
+{
+    {
+        QRegExp exp("a{0,1}");
+        QVERIFY(exp.isValid());
+    }
+    {
+        QRegExp exp("a{1,1}");
+        QVERIFY(exp.isValid());
+    }
+    {
+        QRegExp exp("a{1,0}");
+        QVERIFY(!exp.isValid());
+    }
+}
+
+
 QTEST_APPLESS_MAIN(tst_QRegExp)
 #include "tst_qregexp.moc"