repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove superfluous re- from confirmemail_body_set
[mediawiki.git]
/
tests
/
phpunit
/
includes
/
XmlJsTest.php
blob
c5b411fb473d091e40bd5af6ac5fdc84bb0e8632
1
<
?php
2
class
XmlJs
extends
MediaWikiTestCase
{
3
public function
testConstruction
() {
4
$obj
=
new
XmlJsCode
(
null
);
5
$this
->
assertNull
(
$obj
->
value
);
6
$obj
=
new
XmlJsCode
(
''
);
7
$this
->
assertSame
(
$obj
->
value
,
''
);
8
}
9
}