(self)
| 91 | self.assertNotEqual(v1, v5) |
| 92 | |
| 93 | def test_invalid_name(self): |
| 94 | with self.assertRaises(TypeError): |
| 95 | Variable(self.root, name=123) |
| 96 | |
| 97 | def test_null_in_name(self): |
| 98 | with self.assertRaises(ValueError): |
nothing calls this directly
no test coverage detected