c845abda9405ec09d79573c8649f2c336d215a05
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / test / unit.twig
1 <?php
2
3 namespace Drupal\Tests\{{ machine_name }}\Unit;
4
5 use Drupal\Tests\UnitTestCase;
6
7 /**
8  * Test description.
9  *
10  * @group {{ machine_name }}
11  */
12 class {{ class }} extends UnitTestCase {
13
14   /**
15    * {@inheritdoc}
16    */
17   protected function setUp() {
18     parent::setUp();
19     // @TODO: Mock required services here.
20   }
21
22   /**
23    * Tests something.
24    */
25   public function testSomething() {
26     $this->assertTrue(TRUE, 'This is TRUE!');
27   }
28
29 }