diff --git a/unit_tests/operator/Test_DepthToSpaceImpl.cpp b/unit_tests/operator/Test_DepthToSpaceImpl.cpp
index 329d56ce7b89eb713dfeb911537a2091e92fc916..62f760ce8b3942ab3101ff5e1324307a46048b91 100644
--- a/unit_tests/operator/Test_DepthToSpaceImpl.cpp
+++ b/unit_tests/operator/Test_DepthToSpaceImpl.cpp
@@ -74,4 +74,14 @@ TEST_CASE("[core/operator] DepthToSpace_Op", "[DepthToSpace][forwardDims]") {
         REQUIRE(myDTS_should_not_throw.getOutput(0)->dims() == std::vector<std::size_t>({1,1,400,400}));
     }
 }
-} // namspace Aidge
\ No newline at end of file
+
+TEST_CASE("[core/operator] DepthToSpace_Op impl", "[DepthToSpace][forward]") {
+    // Create a random number generator
+    std::random_device rd;
+    std::mt19937 gen(rd());
+    std::uniform_int_distribution<std::size_t> dimsDist(1, 10);
+
+
+}
+
+} // namespace Aidge