mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 01:32:42 +01:00
368f359114
Summary: Use `PhutilClassMaQuery` instead of `PhutilSymbolLoader`, mostly for consistency. Depends on D13588. Test Plan: Poked around a bunch of pages. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13589
19 lines
515 B
PHP
19 lines
515 B
PHP
<?php
|
|
|
|
final class PhabricatorConduitTestCase extends PhabricatorTestCase {
|
|
|
|
public function testConduitMethods() {
|
|
$methods = id(new PhutilClassMapQuery())
|
|
->setAncestorClass('ConduitAPIMethod')
|
|
->execute();
|
|
|
|
// We're just looking for a side effect of ConduitCall construction
|
|
// here: it will throw if any methods define reserved parameter names.
|
|
|
|
foreach ($methods as $method) {
|
|
new ConduitCall($method->getAPIMethodName(), array());
|
|
}
|
|
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|