Create MI tests for EW Unary: ABS, CEIL, FLOOR, NEGATE

Signed-off-by: James Ward <james.ward@arm.com>
Change-Id: I2ee6d4f706958b6261fd41dd245a3d01d3f8cecf
diff --git a/verif/conformance/test_select.py b/verif/conformance/test_select.py
index 2b8e7d2..99588a9 100644
--- a/verif/conformance/test_select.py
+++ b/verif/conformance/test_select.py
@@ -399,6 +399,12 @@
     param_names = ["shape", "type", "output_type"]
 
 
+class CeilOperator(Operator):
+    """Test selector for the CEIL operator."""
+
+    name = "ceil"
+
+
 class ClampOperator(Operator):
     """Test selector for the CLAMP operator."""
 
@@ -458,6 +464,12 @@
     name = "equal"
 
 
+class FloorOperator(Operator):
+    """Test selector for the FLOOR operator."""
+
+    name = "floor"
+
+
 class FullyConnectedOperator(Operator):
     """Test selector for the FULLY_CONNECTED operator."""