-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test to verify analysis lib can be loaded
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# -*- coding: utf-8 -*- | ||
''' | ||
test_analysis.py | ||
-------------------------------------- | ||
Date : September 2012 | ||
Copyright : (C) 2012 by Tim Sutton | ||
email : tim@linfiniti.com | ||
*************************************************************************** | ||
* * | ||
* This program is free software; you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation; either version 2 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
***************************************************************************/ | ||
''' | ||
import unittest | ||
import sys | ||
import os | ||
from utilities import unitTestDataPath, getQgisTestApp | ||
from PyQt4.QtCore import QFileInfo, QDir, QStringList | ||
from PyQt4.QtXml import QDomDocument | ||
|
||
# support python < 2.7 via unittest2 | ||
# needed for expected failure decorator | ||
if sys.version_info[0:2] < (2,7): | ||
try: | ||
from unittest2 import TestCase, expectedFailure | ||
except ImportError: | ||
print "You need to install unittest2 to run the salt tests" | ||
sys.exit(1) | ||
else: | ||
from unittest import TestCase, expectedFailure | ||
|
||
QGISAPP, CANVAS, IFACE, PARENT = getQgisTestApp() | ||
TEST_DATA_DIR = unitTestDataPath() | ||
|
||
|
||
class TestQgsZonalStatistics(TestCase): | ||
|
||
def setUp(self): | ||
"""Run before each test.""" | ||
pass | ||
|
||
def tearDown(self): | ||
"""Run after each test.""" | ||
pass | ||
|
||
@expectedFailure | ||
def testSubstitutionMap(self): | ||
"""Test that we can import zonal statistics was failing as of d5f6543 | ||
""" | ||
try: | ||
from qgis.analysis import QgsZonalStatistics | ||
except ImportError: | ||
self.fail('Failed to import zonal statistics python module') | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |