Create MI tests for Tensor: FFT2D & RFFT2D

Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com>
Change-Id: I44ad6513fad831ff50fcc5ab801b46a5bf25d0a8
diff --git a/verif/conformance/test_select.py b/verif/conformance/test_select.py
index 061a109..72a4e84 100644
--- a/verif/conformance/test_select.py
+++ b/verif/conformance/test_select.py
@@ -496,6 +496,13 @@
     name = "exp"
 
 
+class FFT2DOperator(Operator):
+    """Test selector for the FFT2D operator."""
+
+    name = "fft2d"
+    param_names = ["shape", "type", "inverse"]
+
+
 class FloorOperator(Operator):
     """Test selector for the FLOOR operator."""
 
@@ -729,6 +736,12 @@
     param_names = ["shape", "type", "axis"]
 
 
+class RFFT2DOperator(Operator):
+    """Test selector for the RFFT2D operator."""
+
+    name = "rfft2d"
+
+
 class RsqrtOperator(Operator):
     """Test selector for the RSQRT operator."""