diff --git a/tests/src/Unit/VudMinimalTest.php b/tests/src/Unit/VudMinimalTest.php
new file mode 100644
index 0000000..264ddf3
--- /dev/null
+++ b/tests/src/Unit/VudMinimalTest.php
@@ -0,0 +1,22 @@
+<?php
+
+// An example phpunit test.
+// Save this file as tests/src/Unit/VudMinimalTest.php
+// Then you can run it `php core/scripts/run-tests.sh vud`
+
+namespace Drupal\Tests\vud\Unit;
+
+use Drupal\Tests\UnitTestCase;
+
+/**
+ * A dumb vud test.
+ *
+ * @group vud
+ */
+class VudMinimalTest extends UnitTestCase {
+
+  public function testNothing() {
+    $this->assertEquals(0, 0);
+  }
+
+}
