Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
|
@@ -30,6 +30,7 @@ |
|
|
|
|
|
|
|
|
class optionsDialog(QDialog, Ui_SettingsDialogPythonConsole): |
|
|
|
|
|
def __init__(self, parent): |
|
|
QDialog.__init__(self, parent) |
|
|
self.setWindowTitle(QCoreApplication.translate( |
|
|
|
@@ -650,4 +650,4 @@ def testMaximumValue(self): |
|
|
|
|
|
def testAllFeatureIds(self): |
|
|
ids = set([f.id() for f in self.source.getFeatures()]) |
|
|
self.assertEqual(set(self.source.allFeatureIds()),ids)
|
|
|
self.assertEqual(set(self.source.allFeatureIds()), ids) |
|
@@ -37,6 +37,7 @@ |
|
|
from qgis.testing import start_app, unittest |
|
|
from featuresourcetestbase import FeatureSourceTestCase |
|
|
from utilities import unitTestDataPath |
|
|
|
|
|
start_app() |
|
|
|
|
|
|
|
@@ -105,6 +106,11 @@ def testMaximumValue(self): |
|
|
""" |
|
|
pass |
|
|
|
|
|
def testAllFeatureIds(self): |
|
|
""" Skip allFeatureIds test - not implemented by the cache (yet) |
|
|
""" |
|
|
pass |
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.