claro-8.x-1.x-dev/tests/src/Unit/EmptyTest.php
tests/src/Unit/EmptyTest.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <?php namespace Drupal\Tests\claro\Unit; use Drupal\Tests\UnitTestCase; /** * Empty test to work around DrupalCI bug. * * @group claro */ class EmptyTest extends UnitTestCase { /** * Empty test to work around DrupalCI bug. */ public function testEmpty() { $this ->assertTrue(TRUE); } } |