14 lines
208 B
Twig
14 lines
208 B
Twig
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace {{ prototype.namespace }};
|
|
|
|
use Drupal\Tests\UnitTestCase;
|
|
|
|
{% for class in prototype.classes %}
|
|
final class {{ class.name }} extends UnitTestCase {
|
|
|
|
}
|
|
{% endfor %}
|