diff --git a/src/ifcopenshell-python/ifcopenshell/test_ids.py b/src/ifcopenshell-python/ifcopenshell/test_ids.py new file mode 100644 index 0000000000..23bd98e43d --- /dev/null +++ b/src/ifcopenshell-python/ifcopenshell/test_ids.py @@ -0,0 +1,22 @@ +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() \ No newline at end of file