Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102205561
PhabricatorConduitTestCase.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Feb 18, 06:20
Size
518 B
Mime Type
text/x-php
Expires
Thu, Feb 20, 06:20 (2 d)
Engine
blob
Format
Raw Data
Handle
24284457
Attached To
rPH Phabricator
PhabricatorConduitTestCase.php
View Options
<?php
final
class
PhabricatorConduitTestCase
extends
PhabricatorTestCase
{
public
function
testConduitMethods
()
{
$methods
=
id
(
new
PhutilSymbolLoader
())
->
setAncestorClass
(
'ConduitAPIMethod'
)
->
loadObjects
();
// 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
);
}
}
Event Timeline
Log In to Comment