Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106822395
PhutilXHPASTSyntaxHighlighterTestCase.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, Apr 1, 03:55
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Apr 3, 03:55 (2 d)
Engine
blob
Format
Raw Data
Handle
25282728
Attached To
rPHU libphutil
PhutilXHPASTSyntaxHighlighterTestCase.php
View Options
<?php
final
class
PhutilXHPASTSyntaxHighlighterTestCase
extends
PhutilTestCase
{
private
function
highlight
(
$source
)
{
$highlighter
=
new
PhutilXHPASTSyntaxHighlighter
();
$future
=
$highlighter
->
getHighlightFuture
(
$source
);
return
$future
->
resolve
();
}
private
function
read
(
$file
)
{
$path
=
dirname
(
__FILE__
).
'/xhpast/'
.
$file
;
return
Filesystem
::
readFile
(
$path
);
}
public
function
testBuiltinClassnames
()
{
$this
->
assertEqual
(
$this
->
read
(
'builtin-classname.expect'
),
(
string
)
$this
->
highlight
(
$this
->
read
(
'builtin-classname.source'
)),
'Builtin classnames should not be marked as linkable symbols.'
);
$this
->
assertEqual
(
$this
->
read
(
'trailing-comment.expect'
),
(
string
)
$this
->
highlight
(
$this
->
read
(
'trailing-comment.source'
)),
'Trailing comments should not be dropped.'
);
$this
->
assertEqual
(
$this
->
read
(
'multiline-token.expect'
),
(
string
)
$this
->
highlight
(
$this
->
read
(
'multiline-token.source'
)),
'Multi-line tokens should be split across lines.'
);
}
}
Event Timeline
Log In to Comment