From cbd0176c370fa8f979bc451f7a6c1a610a34e18e Mon Sep 17 00:00:00 2001 From: Oliver Davies <oliver@oliverdavies.uk> Date: Sat, 14 Nov 2020 09:56:42 +0000 Subject: [PATCH] 5a: Add a unit test for the Post class --- .../custom/my_module/tests/src/Unit/Entity/PostTest.php | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 web/modules/custom/my_module/tests/src/Unit/Entity/PostTest.php diff --git a/web/modules/custom/my_module/tests/src/Unit/Entity/PostTest.php b/web/modules/custom/my_module/tests/src/Unit/Entity/PostTest.php new file mode 100644 index 0000000..0419d69 --- /dev/null +++ b/web/modules/custom/my_module/tests/src/Unit/Entity/PostTest.php @@ -0,0 +1,9 @@ +<?php + +namespace Drupal\Tests\my_module\Unit\Entity; + +use Drupal\Tests\UnitTestCase; + +class PostTest extends UnitTestCase { + +}