Files
IfcOpenShell/src/ifcopenshell-python/ifcopenshell/test_ids.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
451 B
Python
Raw Normal View History

2021-07-02 17:27:09 +02:00
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()