Add a bunch of tests for subclass implementations

Summary: Add a bunch of tests to ensure that subclasses behave.

Test Plan: `arc unit`

Reviewers: eadler, #blessed_reviewers, epriestley

Reviewed By: eadler, #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D13272
This commit is contained in:
Joshua Spence
2015-06-15 18:07:06 +10:00
parent b6d745b666
commit 1239cfdeaf
29 changed files with 302 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
<?php
final class PhabricatorFactEngineTestCase extends PhabricatorTestCase {
public function testLoadAllEngines() {
PhabricatorFactEngine::loadAllEngines();
$this->assertTrue(true);
}
}