Version 1
[yaffs-website] / vendor / drupal / console / Test / Command / GenerateCommandTest.php
diff --git a/vendor/drupal/console/Test/Command/GenerateCommandTest.php b/vendor/drupal/console/Test/Command/GenerateCommandTest.php
new file mode 100644 (file)
index 0000000..a232522
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace Drupal\Console\Test\Command;
+
+use Symfony\Component\DependencyInjection\Container;
+use Drupal\Console\Test\BaseTestCase;
+
+abstract class GenerateCommandTest extends BaseTestCase
+{
+    /**
+     * @return \Symfony\Component\DependencyInjection\ContainerInterface Drupal container
+     */
+    protected function getContainer()
+    {
+        $container = new Container();
+        $container->set('twig', new \Twig_Environment());
+        return $container;
+    }
+}