(self)
| 309 | self.assertEqual(v, v2) |
| 310 | |
| 311 | def test_guid(self): |
| 312 | v = ua.Variant(uuid.uuid4(), ua.VariantType.Guid) |
| 313 | v2 = variant_from_binary(ua.utils.Buffer(variant_to_binary(v))) |
| 314 | self.assertEqual(v.VariantType, v2.VariantType) |
| 315 | self.assertEqual(v, v2) |
| 316 | |
| 317 | def test_nodeid(self): |
| 318 | nid = ua.NodeId() |
nothing calls this directly
no test coverage detected