forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
30 lines
448 B
Twig
30 lines
448 B
Twig
<?php
|
|
|
|
namespace Drupal\Tests\{{ machine_name }}\Unit;
|
|
|
|
use Drupal\Tests\UnitTestCase;
|
|
|
|
/**
|
|
* Test description.
|
|
*
|
|
* @group {{ machine_name }}
|
|
*/
|
|
class {{ class }} extends UnitTestCase {
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
// @todo Mock required classes here.
|
|
}
|
|
|
|
/**
|
|
* Tests something.
|
|
*/
|
|
public function testSomething() {
|
|
self::assertTrue(TRUE, 'This is TRUE!');
|
|
}
|
|
|
|
}
|