COMPMID-503: Move MinMaxLocation to new validation

Change-Id: I2d518b3a3f15e2c4786488593dac244c1d74a0f9
Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86533
Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com>
diff --git a/tests/Types.h b/tests/Types.h
index cb9b0b9..516f61c 100644
--- a/tests/Types.h
+++ b/tests/Types.h
@@ -23,6 +23,11 @@
  */
 #ifndef __ARM_COMPUTE_TEST_TYPES_H__
 #define __ARM_COMPUTE_TEST_TYPES_H__
+
+#include "arm_compute/core/Types.h"
+
+#include <vector>
+
 namespace arm_compute
 {
 /** Fixed point operation */
@@ -33,5 +38,14 @@
     INV_SQRT,  /**< Inverse square root */
     RECIPROCAL /**< Reciprocal */
 };
+
+template <typename MinMaxType>
+struct MinMaxLocationValues
+{
+    MinMaxType                 min{};
+    MinMaxType                 max{};
+    std::vector<Coordinates2D> min_loc{};
+    std::vector<Coordinates2D> max_loc{};
+};
 } // namespace arm_compute
 #endif /* __ARM_COMPUTE_TEST_TYPES_H__ */