Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / test / kernel.twig
index dc8c776a7a10555040d16573cfb8df966ec50b69..84af97e430d25b2424c0631c4bee8348dc36208b 100644 (file)
@@ -2,7 +2,6 @@
 
 namespace Drupal\Tests\{{ machine_name }}\Kernel;
 
-use Drupal\block\Entity\Block;
 use Drupal\KernelTests\KernelTestBase;
 
 /**
@@ -15,43 +14,22 @@ class {{ class }} extends KernelTestBase {
   /**
    * {@inheritdoc}
    */
-  public static $modules = ['block', 'system', 'user'];
+  public static $modules = ['{{ machine_name }}'];
 
   /**
    * {@inheritdoc}
    */
   protected function setUp() {
     parent::setUp();
-    $this->container
-      ->get('entity_type.manager')
-      ->getStorage('block')
-      ->create([
-        'id' => 'test_block',
-        'theme' => 'stark',
-        'plugin' => 'system_powered_by_block',
-      ])
-      ->save();
+    // Mock required services here.
   }
 
   /**
    * Test callback.
    */
-  public function testBlockRendering() {
-    $entity = Block::load('test_block');
-
-    $build = \Drupal::entityTypeManager()
-      ->getViewBuilder($entity->getEntityTypeId())
-      ->view($entity);
-
-    $content = $this
-      ->container
-      ->get('renderer')
-      ->renderRoot($build);
-
-    $this->assertTrue(
-      strpos(strip_tags($content), 'Powered by Drupal') !== FALSE,
-      'Valid block content was found.'
-    );
+  public function testSomething() {
+    $result = $this->container->get('transliteration')->transliterate('Друпал');
+    $this->assertEquals('Drupal', $result);
   }
 
 }