(self)
| 87 | # FIXME : finish |
| 88 | |
| 89 | def test_add_node_bad_args(self): |
| 90 | obj = self.opc.get_objects_node() |
| 91 | |
| 92 | with self.assertRaises(TypeError): |
| 93 | fold = obj.add_folder(1.2, "kk") |
| 94 | |
| 95 | with self.assertRaises(TypeError): |
| 96 | fold = obj.add_folder(ua.UaError, "khjh") |
| 97 | |
| 98 | with self.assertRaises(ua.UaError): |
| 99 | fold = obj.add_folder("kjk", 1.2) |
| 100 | |
| 101 | with self.assertRaises(TypeError): |
| 102 | fold = obj.add_folder("i=0;s='oooo'", 1.2) |
| 103 | |
| 104 | with self.assertRaises(ua.UaError): |
| 105 | fold = obj.add_folder("i=0;s='oooo'", "tt:oioi") |
| 106 | |
| 107 | def test_delete_nodes(self): |
| 108 | obj = self.opc.get_objects_node() |
nothing calls this directly
no test coverage detected