From ad8542f2446d0f9766cd0e7a7d58a9b88e12aad2 Mon Sep 17 00:00:00 2001 From: ArturTomczak Date: Fri, 2 Jul 2021 17:27:09 +0200 Subject: [PATCH] add unittest init --- .../ifcopenshell/test_ids.py | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/ifcopenshell-python/ifcopenshell/test_ids.py 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