5import isystem.connect
as ic
6import export_profiler_data
12def test_getParserWarnings():
13 conn_mgr = ic.ConnectionMgr()
14 conn_mgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
17 xml_file_path = export_profiler_data.export_data(conn_mgr)
18 prof_data = ic.CProfilerData2.createInstance(xml_file_path)
20 print(
"Parser warnings:\n", prof_data.getParserWarnings())
23if __name__ ==
"__main__":
24 test_getParserWarnings()