Add a possibility to call PSA_INIT without MBEDTLS_PSA_CRYPTO_C

Signed-off-by: Andrzej Kurek <andrzej.kurek@arm.com>
diff --git a/tests/include/test/psa_crypto_helpers.h b/tests/include/test/psa_crypto_helpers.h
index 6f42882..4302345 100644
--- a/tests/include/test/psa_crypto_helpers.h
+++ b/tests/include/test/psa_crypto_helpers.h
@@ -276,6 +276,12 @@
         }                                                                  \
     }                                                                      \
     while( 0 )
+#else
+/* Define empty macros so that we can use them in the preamble and teardown
+ * of every test function that uses PSA conditionally based on
+ * MBEDTLS_PSA_CRYPTO_C. */
+#define PSA_INIT( ) ( (void) 0 )
+#define PSA_DONE( ) ( (void) 0 )
 
 #endif /* MBEDTLS_PSA_CRYPTO_C */