diff --git a/tests/test_app/Plugin/Company/TestPluginThree/tests/Fixture/ArticlesFixture.php b/tests/test_app/Plugin/Company/TestPluginThree/tests/Fixture/ArticlesFixture.php new file mode 100644 index 00000000000..d568800ca09 --- /dev/null +++ b/tests/test_app/Plugin/Company/TestPluginThree/tests/Fixture/ArticlesFixture.php @@ -0,0 +1,46 @@ + ['type' => 'integer'], + 'author_id' => ['type' => 'integer', 'null' => true], + 'title' => ['type' => 'string', 'null' => true], + 'body' => 'text', + '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]] + ]; + + /** + * records property + * + * @var array + */ + public $records = [ + ['author_id' => 1, 'title' => 'Plugin Article', 'body' => 'Plugin Article Body'], + ]; +}