Browse Source

Add the Author entity for the testGetMockForModelWithPlugin test

Berry Goudswaard 11 years ago
parent
commit
f2ac478d0f
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/test_app/Plugin/TestPlugin/src/Model/Entity/Author.php

+ 13 - 0
tests/test_app/Plugin/TestPlugin/src/Model/Entity/Author.php

@@ -0,0 +1,13 @@
+<?php
+
+namespace TestPlugin\Model\Entity;
+
+use Cake\ORM\Entity;
+
+/**
+ * Tests entity class used for asserting correct entity is loaded
+ *
+ */
+class Author extends Entity {
+
+}