mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-12 02:23:34 +00:00
22 lines
451 B
Python
22 lines
451 B
Python
|
|
import unittest
|
||
|
|
from ids import ids, specification, entity, classification, property, material
|
||
|
|
|
||
|
|
|
||
|
|
class TestIds(unittest.TestCase):
|
||
|
|
|
||
|
|
""" Parsing IDS.xml """
|
||
|
|
|
||
|
|
def test_parse(self):
|
||
|
|
ids_file = ids.parse(sys.argv[1])
|
||
|
|
self.assertEqual( type(ids_file).__name__, "ids" )
|
||
|
|
|
||
|
|
""" IDS authoring """
|
||
|
|
|
||
|
|
""" IFC validation with IDS """
|
||
|
|
|
||
|
|
""" IDS validation results """
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
import sys
|
||
|
|
unittest.main()
|