Browse Source

Add a TestPlugin.Comment for the new TestCases

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

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

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