IVGCVSW-7675 Rework more DelegateUnitTests so backends are subcases.

The intent of this change is to remove the per backend test cases in
the delegate unit tests. They will be replaced by using DocTest
SUBCASES. The sub cases are paramaterized by the available backends.
The list of available backends are determined by the compilation flags.

Signed-off-by: Colm Donelan <colm.donelan@arm.com>
Change-Id: I6dd0369491c4582b8e2467b911dfd085dddcf576
diff --git a/delegate/test/TileTest.cpp b/delegate/test/TileTest.cpp
index ef80396..545ceeb 100644
--- a/delegate/test/TileTest.cpp
+++ b/delegate/test/TileTest.cpp
@@ -1,21 +1,15 @@
 //
-// Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
+// Copyright © 2023-2024 Arm Ltd and Contributors. All rights reserved.
 // SPDX-License-Identifier: MIT
 //
 
 #include "TileTestHelper.hpp"
 
-#include <armnn_delegate.hpp>
-#include <flatbuffers/flatbuffers.h>
-#include <tensorflow/lite/interpreter.h>
-#include <tensorflow/lite/kernels/register.h>
-#include <tensorflow/lite/model.h>
-#include <tensorflow/lite/version.h>
 #include <doctest/doctest.h>
 
 namespace armnnDelegate
 {
-void TileFloat32Test(std::vector<armnn::BackendId>& backends)
+void TileFloat32Test()
 {
     // Set input data
     std::vector<float> inputValues =
@@ -43,7 +37,6 @@
     const std::vector<int32_t> expectedOutputShape = { 4, 6 };
 
     TileFP32TestImpl(tflite::BuiltinOperator_TILE,
-                     backends,
                      inputValues,
                      inputShape,
                      multiplesValues,
@@ -52,37 +45,14 @@
                      expectedOutputShape);
 }
 
-TEST_SUITE("TileTests_GpuAccTests")
+TEST_SUITE("TileTestsTests")
 {
 
-    TEST_CASE ("Tile_Float32_GpuAcc_Test")
+    TEST_CASE ("Tile_Float32_Test")
     {
-        std::vector<armnn::BackendId> backends = { armnn::Compute::GpuAcc };
-        TileFloat32Test(backends);
+        TileFloat32Test();
     }
 
-} // TEST_SUITE("Tile_Float32_GpuAcc_Test")
-
-TEST_SUITE("TileTests_CpuAccTests")
-{
-
-    TEST_CASE ("Tile_Float32_CpuAcc_Test")
-    {
-        std::vector<armnn::BackendId> backends = { armnn::Compute::CpuAcc };
-        TileFloat32Test(backends);
-    }
-
-} // TEST_SUITE("Tile_Float32_CpuAcc_Test")
-
-TEST_SUITE("TileTests_CpuRefTests")
-{
-
-    TEST_CASE ("Tile_Float32_CpuRef_Test")
-    {
-        std::vector<armnn::BackendId> backends = { armnn::Compute::CpuRef };
-        TileFloat32Test(backends);
-    }
-
-} // TEST_SUITE("Tile_Float32_CpuRef_Test")
+} // TEST_SUITE("Tile_Float32_Test")
 
 } // namespace armnnDelegate
\ No newline at end of file