| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- '''
- @author: olivier.massot, janv. 2019
- '''
- import logging
- from path import Path
- from test._base import SchemaTest
- logger = logging.getLogger("mncheck")
- class Test(SchemaTest):
- SCHEMA_NAME = "mn1_rec"
- PROJECT_FILE = Path(__file__).parent / 'projects' / 'mn1_rec' / '01_valid' / '01_valid.qgs'
- def test_load_layers(self):
- pass
-
- def test_scr(self):
- pass
-
- def test_structure_arteres(self):
- pass
-
- def test_structure_cables(self):
- pass
-
- def test_structure_equipements(self):
- pass
-
- def test_structure_noeuds(self):
- pass
- def test_structure_tranchees(self):
- pass
- def test_structure_zapbos(self):
- pass
- def test_geometry_validity(self):
- pass
- def test_geometry_type(self):
- pass
- def test_bounding_box(self):
- pass
- def test_duplicates(self):
- pass
-
- def test_constraints_arteres_noeuds(self):
- pass
- def test_constraints_cables_equipements(self):
- pass
- def test_constraints_cables_equipements_b(self):
- pass
- def test_constraints_equipements_noeuds(self):
- pass
- def test_graphic_duplicates(self):
- pass
-
- def test_positions_noeuds(self):
- pass
- def test_positions_equipements(self):
- pass
-
- def test_tranchee_artere(self):
- pass
-
- def test_cable_artere(self):
- pass
-
- def test_artere_cable(self):
- pass
-
- def test_dimensions_fourreaux(self):
- pass
-
- def test_pbos(self):
- pass
-
|