(self)
| 28 | class TestDataElementInterface(unittest.TestCase): |
| 29 | |
| 30 | def test_repr(self): |
| 31 | self.assertEqual(repr(DataElement('foo')), "DataElement(tag='foo')") |
| 32 | |
| 33 | def test_value(self): |
| 34 | self.assertIsNone(DataElement('foo').value) |
nothing calls this directly
no test coverage detected