Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97601937
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
Sun, Jan 5, 15:22
Size
518 B
Mime Type
text/x-php
Expires
Tue, Jan 7, 15:22 (2 d)
Engine
blob
Format
Raw Data
Handle
23361816
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