Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15400745
D11417.id27424.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D11417.id27424.diff
View Options
diff --git a/src/__tests__/PhutilLibraryTestCase.php b/src/__tests__/PhutilLibraryTestCase.php
--- a/src/__tests__/PhutilLibraryTestCase.php
+++ b/src/__tests__/PhutilLibraryTestCase.php
@@ -11,7 +11,9 @@
* missing methods in descendants of abstract base classes.
*/
public function testEverythingImplemented() {
- id(new PhutilSymbolLoader())->selectAndLoadSymbols();
+ id(new PhutilSymbolLoader())
+ ->setLibrary($this->getLibraryName())
+ ->selectAndLoadSymbols();
$this->assertTrue(true);
}
@@ -46,6 +48,7 @@
*/
public function testMethodVisibility() {
$symbols = id(new PhutilSymbolLoader())
+ ->setLibrary($this->getLibraryName())
->selectSymbolsWithoutLoading();
$classes = array();
@@ -101,6 +104,13 @@
}
/**
+ * Get the name of the library currently being tested.
+ */
+ protected function getLibraryName() {
+ return phutil_get_library_name_for_root($this->getLibraryRoot());
+ }
+
+ /**
* Get the root directory for the library currently being tested.
*/
protected function getLibraryRoot() {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 18, 1:45 PM (2 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7709929
Default Alt Text
D11417.id27424.diff (1 KB)
Attached To
Mode
D11417: Only test symbols from the current library
Attached
Detach File
Event Timeline
Log In to Comment