diff --git a/source/RobotAPI/libraries/aron/core/test/aronRandomizedTest.cpp b/source/RobotAPI/libraries/aron/core/test/aronRandomizedTest.cpp
index 4ff0724c95ca3c0cbc31dd051b6ba3afdff37fe9..b9c54acda1e8d0e1b70477427a2d8c848bbedb15 100644
--- a/source/RobotAPI/libraries/aron/core/test/aronRandomizedTest.cpp
+++ b/source/RobotAPI/libraries/aron/core/test/aronRandomizedTest.cpp
@@ -384,3 +384,11 @@ BOOST_AUTO_TEST_CASE(test_Optional)
     OptionalTest pc2;
     runTestWithInstances<OptionalTest>(pc, pc2);
 }
+
+
+BOOST_AUTO_TEST_CASE(test_Enum)
+{
+    BOOST_TEST_MESSAGE("Running Optional test");
+    TheIntEnum value = TheIntEnum::INT_ENUM_VALUE_2;
+    BOOST_CHECK_EQUAL(value.toString(), "INT_ENUM_VALUE_2");
+}