Remove unused QTestResult::allDataPassed().

The removed function was private API and was not used anywhere in Qt.

Change-Id: Ia262d119ebba30f6968cb7145043475bf88ffa39
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
This commit is contained in:
Jason McDonald 2012-01-13 14:50:37 +10:00 committed by Qt by Nokia
parent 1066d185a6
commit 51cb2dd00a
2 changed files with 0 additions and 6 deletions

View File

@ -88,11 +88,6 @@ void QTestResult::reset()
QTest::expectFailMode = 0;
}
bool QTestResult::allDataPassed()
{
return !QTest::failed;
}
bool QTestResult::currentTestFailed()
{
return QTest::dataFailed;

View File

@ -67,7 +67,6 @@ public:
static const char *currentTestObjectName();
static bool currentTestFailed();
static bool allDataPassed();
static QTestData *currentTestData();
static QTestData *currentGlobalTestData();
static const char *currentTestFunction();