[GRASS-SVN] r73564 - in grass/trunk/imagery/i.segment: . testsuite
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Oct 16 22:42:02 PDT 2018
Author: neteler
Date: 2018-10-16 22:42:02 -0700 (Tue, 16 Oct 2018)
New Revision: 73564
Added:
grass/trunk/imagery/i.segment/testsuite/
grass/trunk/imagery/i.segment/testsuite/test_isegment.py
Log:
i.segment: testsuite added
Added: grass/trunk/imagery/i.segment/testsuite/test_isegment.py
===================================================================
--- grass/trunk/imagery/i.segment/testsuite/test_isegment.py (rev 0)
+++ grass/trunk/imagery/i.segment/testsuite/test_isegment.py 2018-10-17 05:42:02 UTC (rev 73564)
@@ -0,0 +1,43 @@
+"""
+Name: i.segment test
+Purpose: Tests i.segment and its flags/options.
+
+Author: Markus Neteler
+Copyright: (C) 2018 by Markus Neteler and the GRASS Development Team
+Licence: This program is free software under the GNU General Public
+ License (>=v2). Read the file COPYING that comes with GRASS
+ for details.
+"""
+from grass.gunittest.case import TestCase
+
+class TestReport(TestCase):
+
+ @classmethod
+ def setUpClass(cls):
+ """Use temporary region settings"""
+ map_input = 'ortho_2001_t792_1m'
+ cls.runModule("g.region", n=220000, s=219456, w=637033, e=638000, align=map_input)
+ cls.use_temp_region()
+
+ @classmethod
+ def tearDownClass(cls):
+ map_output = 'test'
+ group = 'ortho'
+ cls.runModule("g.remove", flags='f', type='raster', name=map_output)
+ cls.runModule("g.remove", flags='f', type='group', name=group)
+ cls.del_temp_region()
+
+ def test_isegment(self):
+ """Testing i.segment"""
+ map_input = 'ortho_2001_t792_1m'
+ map_output = 'test'
+ group = 'ortho'
+
+ self.assertModule('i.group', group=group, input=map_input)
+ self.assertModule('i.segment', group=group, threshold=0.01, minsize=1, output=map_output)
+ self.assertRasterMinMax(map=map_output, refmin=1, refmax=500000,
+ msg="Number of segments must be > 0")
+
+if __name__ == '__main__':
+ from grass.gunittest.main import test
+ test()
More information about the grass-commit
mailing list