Page MenuHomePhabricator

PhabricatorConduitTestCase.php
No OneTemporary

PhabricatorConduitTestCase.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);
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Jun 11, 7:00 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3392911
Default Alt Text
PhabricatorConduitTestCase.php (515 B)

Event Timeline