Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/drydock/blueprint/__tests__/DrydockBlueprintImplementationTestCase.php
12262 views
1
<?php
2
3
final class DrydockBlueprintImplementationTestCase extends PhabricatorTestCase {
4
5
public function testGetAllBlueprintImplementations() {
6
DrydockBlueprintImplementation::getAllBlueprintImplementations();
7
$this->assertTrue(true);
8
}
9
10
}
11
12