(self)
| 378 | ua.QualifiedName.from_string("i:::yu") |
| 379 | |
| 380 | def test_expandednodeid(self): |
| 381 | nid = ua.ExpandedNodeId() |
| 382 | self.assertEqual(nid.NodeIdType, ua.NodeIdType.TwoByte) |
| 383 | nid2 = nodeid_from_binary(ua.utils.Buffer(nodeid_to_binary(nid))) |
| 384 | self.assertEqual(nid, nid2) |
| 385 | |
| 386 | def test_null_string(self): |
| 387 | v = ua.Variant(None, ua.VariantType.String) |
nothing calls this directly
no test coverage detected