@tests: TransformationXMLFile TransformationXMLFile.__init__ TransformationXMLFile.load TransformationXMLFile.store
()
| 4692 | |
| 4693 | @report |
| 4694 | def testTransformationXMLFile(): |
| 4695 | """ |
| 4696 | @tests: TransformationXMLFile |
| 4697 | TransformationXMLFile.__init__ |
| 4698 | TransformationXMLFile.load |
| 4699 | TransformationXMLFile.store |
| 4700 | """ |
| 4701 | fh = pyopenms.TransformationXMLFile() |
| 4702 | td = pyopenms.TransformationDescription() |
| 4703 | fh.store("test.transformationXML", td) |
| 4704 | fh.load("test.transformationXML", td, True) |
| 4705 | assert td.getDataPoints() == [] |
| 4706 | |
| 4707 | @report |
| 4708 | def testIBSpectraFile(): |
nothing calls this directly
no test coverage detected