summaryrefslogtreecommitdiffstats
path: root/tests/auto/qcheckbox/tst_qcheckbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qcheckbox/tst_qcheckbox.cpp')
-rw-r--r--tests/auto/qcheckbox/tst_qcheckbox.cpp60
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/auto/qcheckbox/tst_qcheckbox.cpp b/tests/auto/qcheckbox/tst_qcheckbox.cpp
index d789059ec9..33f5af4d0b 100644
--- a/tests/auto/qcheckbox/tst_qcheckbox.cpp
+++ b/tests/auto/qcheckbox/tst_qcheckbox.cpp
@@ -67,25 +67,15 @@ public slots:
void cleanup();
private slots:
- void isChecked();
void setChecked();
- void setNoChange();
void setTriState();
- void isTriState();
- void text();
void setText_data();
void setText();
void isToggleButton();
void setDown();
- void isDown();
- void isOn();
- void checkState();
- void autoRepeat();
void setAutoRepeat();
void toggle();
void pressed();
- void released();
- void clicked();
void toggled();
void stateChanged();
void foregroundRole();
@@ -169,11 +159,6 @@ void tst_QCheckBox::onToggled( bool /*on*/ )
// ***************************************************
-void tst_QCheckBox::isChecked()
-{
- DEPENDS_ON( "setChecked" );
-}
-
void tst_QCheckBox::setChecked()
{
testWidget->setChecked( TRUE );
@@ -227,21 +212,6 @@ void tst_QCheckBox::setTriState()
QVERIFY( testWidget->checkState() == Qt::Unchecked );
}
-void tst_QCheckBox::isTriState()
-{
- DEPENDS_ON( "setTriState" );
-}
-
-void tst_QCheckBox::setNoChange()
-{
- DEPENDS_ON( "setTriState" );
-}
-
-void tst_QCheckBox::text()
-{
- DEPENDS_ON( "setText" );
-}
-
void tst_QCheckBox::setText_data()
{
QTest::addColumn<QString>("s1");
@@ -277,26 +247,6 @@ void tst_QCheckBox::setDown()
QVERIFY( !testWidget->isDown() );
}
-void tst_QCheckBox::isDown()
-{
- DEPENDS_ON( "setDown" );
-}
-
-void tst_QCheckBox::isOn()
-{
- DEPENDS_ON( "setChecked" );
-}
-
-void tst_QCheckBox::checkState()
-{
- DEPENDS_ON( "setChecked" );
-}
-
-void tst_QCheckBox::autoRepeat()
-{
- DEPENDS_ON( "setAutoRepeat" );
-}
-
void tst_QCheckBox::setAutoRepeat()
{
// setAutoRepeat has no effect on toggle buttons
@@ -341,16 +291,6 @@ void tst_QCheckBox::pressed()
QVERIFY( testWidget->isChecked() );
}
-void tst_QCheckBox::released()
-{
- DEPENDS_ON( "pressed" );
-}
-
-void tst_QCheckBox::clicked()
-{
- DEPENDS_ON( "pressed" );
-}
-
void tst_QCheckBox::toggled()
{
connect(testWidget, SIGNAL(toggled(bool)), this, SLOT(onToggled(bool)));