From db775e478404b35ca6c058640e3828fa90e808d1 Mon Sep 17 00:00:00 2001
From: Mark Carver <mark.carver@me.com>
Date: Mon, 25 Jul 2016 14:40:42 -0500
Subject: [PATCH] Issue #2138693 by markcarver: Provide UnitTests for theme

---
 src/Tests/BootstrapUnitTest.php | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 src/Tests/BootstrapUnitTest.php

diff --git a/src/Tests/BootstrapUnitTest.php b/src/Tests/BootstrapUnitTest.php
new file mode 100644
index 0000000..a3bf1f0
--- /dev/null
+++ b/src/Tests/BootstrapUnitTest.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\bootstrap\Tests\BootstrapUnitTest.
+ */
+
+namespace Drupal\bootstrap\Tests;
+
+use Drupal\KernelTests\KernelTestBase;
+
+/**
+ * Class BootstrapUnitTest.
+ */
+class BootstrapUnitTest extends KernelTestBase {
+
+  /**
+   * Tests.
+   */
+  function testBootstrapCore() {
+    $this->assertTrue(TRUE, 'Assert TRUE.');
+    $this->assertFalse(FALSE, 'Assert FALSE.');
+  }
+
+}
-- 
2.8.3

