3 final class PhabricatorConduitTestCase
extends PhabricatorTestCase
{
5 public function testConduitMethods() {
6 $methods = id(new PhutilClassMapQuery())
7 ->setAncestorClass('ConduitAPIMethod')
10 // We're just looking for a side effect of ConduitCall construction
11 // here: it will throw if any methods define reserved parameter names.
13 foreach ($methods as $method) {
14 new ConduitCall($method->getAPIMethodName(), array());
17 $this->assertTrue(true);