Raise NotImplementedError in abstract methods

Signed-off-by: Werner Lewis <werner.lewis@arm.com>
diff --git a/scripts/mbedtls_dev/test_generation.py b/scripts/mbedtls_dev/test_generation.py
index 652b9a1..a905473 100644
--- a/scripts/mbedtls_dev/test_generation.py
+++ b/scripts/mbedtls_dev/test_generation.py
@@ -67,7 +67,7 @@
         Returns:
             List of arguments required for the test function.
         """
-        pass
+        raise NotImplementedError
 
     def description(self) -> str:
         """Create a test description.
@@ -104,7 +104,7 @@
         of the class with appropriate input data, and then calling
         `create_test_case()` on each.
         """
-        pass
+        raise NotImplementedError
 
     @classmethod
     def generate_tests(cls) -> Iterator[test_case.TestCase]: