<?php

namespace Drupal\Tests\{{ machine_name }}\Unit;

use Drupal\Tests\UnitTestCase;

/**
 * Test description.
 *
 * @group {{ machine_name }}
 */
class {{ class }} extends UnitTestCase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    // @TODO: Mock required services here.
  }

  /**
   * Tests something.
   */
  public function testSomething() {
    $this->assertTrue(TRUE, 'This is TRUE!');
  }

}
