openquestions-1.0.x-dev/tests/src/Unit/OQUtilsTest.php
tests/src/Unit/OQUtilsTest.php
<?php
namespace Drupal\Tests\openquestions\Unit;
use Drupal\Tests\UnitTestCase;
/**
* Test description.
*
* @group openquestions
*/
class OQUtilsTest 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!');
}
}
