diff --git a/sources/entity/tests/tmgmt_entity_test.install b/sources/entity/tests/tmgmt_entity_test.install
deleted file mode 100644
index c0d8d5b..0000000
--- a/sources/entity/tests/tmgmt_entity_test.install
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-/**
- * Implements hook_schema().
- */
-function tmgmt_entity_test_schema() {
-  $schema['test_entity'] = array(
-    'description' => 'The base table for test entities.',
-    'fields' => array(
-      'teid' => array(
-        'description' => 'The primary identifier for an entity.',
-        'type' => 'serial',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-      ),
-      'type' => array(
-        'description' => 'The type of this entity',
-        'type' => 'varchar',
-        'length' => 32,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'language' => array(
-        'description' => 'The language of this entity.',
-        'type' => 'varchar',
-        'length' => 12,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'title' => array(
-        'description' => 'The title of this node, always treated as non-markup plain text.',
-        'type' => 'varchar',
-        'length' => 255,
-        'not null' => TRUE,
-        'default' => '',
-      ),
-      'uid' => array(
-        'description' => 'The {users}.uid that owns this node; initially, this is the user that created it.',
-        'type' => 'int',
-        'not null' => TRUE,
-        'default' => 0,
-      ),
-    ),
-    'primary key' => array('teid'),
-  );
-  return $schema;
-}
\ No newline at end of file
diff --git a/sources/entity/tests/tmgmt_entity_test.module b/sources/entity/tests/tmgmt_entity_test.module
index f0e9614..98ad050 100644
--- a/sources/entity/tests/tmgmt_entity_test.module
+++ b/sources/entity/tests/tmgmt_entity_test.module
@@ -18,33 +18,3 @@ function tmgmt_entity_test_entity_info_alter(&$entity_info) {
     );
   }
 }
-
-/**
- * Implements hook_entity_info().
- */
-function tmgmt_entity_test_entity_info() {
-  $return = array(
-    'test_entity' => array(
-      'label' => t('Test entity'),
-      'controller class' => 'DrupalDefaultEntityController',
-      'base table' => 'test_entity',
-      'fieldable' => TRUE,
-      'entity keys' => array(
-        'id' => 'teid',
-        'bundle' => 'type',
-        'label' => 'title',
-      ),
-      'bundle keys' => array(
-        'bundle' => 'type',
-      ),
-      'bundles' => array(),
-      'view modes' => array(
-        'full' => array(
-          'label' => t('Full content'),
-          'custom settings' => FALSE,
-        ),
-      ),
-    ),
-  );
-  return $return;
-}
diff --git a/sources/entity/tmgmt_entity.test b/sources/entity/tmgmt_entity.test
index dde3999..ecf18f7 100644
--- a/sources/entity/tmgmt_entity.test
+++ b/sources/entity/tmgmt_entity.test
@@ -2,9 +2,6 @@
 
 /**
  * Basic Entity Source tests.
- *
- * @todo: Write tests for these cases:
- *  - any generic entity (defined by the tmgmt_entity_test module).
  */
 class TMGMTEntitySourceTestCase extends TMGMTEntityTestCaseUtility {
 
@@ -26,7 +23,7 @@ class TMGMTEntitySourceTestCase extends TMGMTEntityTestCaseUtility {
    * Overrides SimplenewsTestCase::setUp()
    */
   function setUp() {
-    parent::setUp(array('tmgmt_entity', 'tmgmt_entity_test', 'taxonomy', 'entity_translation'));
+    parent::setUp(array('tmgmt_entity', 'taxonomy', 'entity_translation'));
 
     // Admin user to perform settings on setup.
     $this->loginAsAdmin(array('administer entity translation'));
diff --git a/tests/tmgmt_test_dependency.info b/tests/tmgmt_test_dependency.info
deleted file mode 100644
index 3c10a55..0000000
--- a/tests/tmgmt_test_dependency.info
+++ /dev/null
@@ -1,6 +0,0 @@
-name = Translation Management Test Dependencies
-package = Translation Management
-core = 7.x
-hidden = TRUE
-dependencies[] = tmgmt
-dependencies[] = rules
diff --git a/tests/tmgmt_test_dependency.module b/tests/tmgmt_test_dependency.module
deleted file mode 100644
index ce97314..0000000
--- a/tests/tmgmt_test_dependency.module
+++ /dev/null
@@ -1,6 +0,0 @@
-<?php
-
-/**
- * @file
- * Test module that declares dependencies required for tests.
- */
