diff --git a/tests/Doctrine/Tests/Models/Reflection/ArrayObjectExtendingClass.php b/tests/Doctrine/Tests/Models/Reflection/ArrayObjectExtendingClass.php
new file mode 100644
index 000000000..4c20586b7
--- /dev/null
+++ b/tests/Doctrine/Tests/Models/Reflection/ArrayObjectExtendingClass.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace Doctrine\Tests\Models\StockExchange;
+
+use ArrayObject;
+
+/**
+ * A test asset extending {@see \ArrayObject}, useful for verifying internal classes issues with reflection
+ */
+class ArrayObjectExtendingClass extends ArrayObject
+{
+    private $privateProperty;
+    protected $protectedProperty;
+    public $publicProperty;
+}