binman: Use the Makefile for u_boot_ucode_ptr
[oweals/u-boot.git] / tools / binman / entry_test.py
index cc1fb795da575e71b09e364d0dd6cd78e405a409..13f58645168e26d87088453add64454ff404e601 100644 (file)
@@ -97,6 +97,11 @@ class TestEntry(unittest.TestCase):
         base = entry.Entry.Create(None, self.GetNode(), 'blob-dtb')
         self.assertTrue(base.WriteChildData(base))
 
+    def testReadChildData(self):
+        """Test the ReadChildData() method of the base class"""
+        base = entry.Entry.Create(None, self.GetNode(), 'blob-dtb')
+        self.assertIsNone(base.ReadChildData(base))
+
 
 if __name__ == "__main__":
     unittest.main()