예제 #1
0
파일: XmlTest.php 프로젝트: lerre/framework
 public function testShouldSerializeNullBinary()
 {
     $user = new UnitTest(array('blob_value' => null));
     $xml = $user->toXml();
     $this->assertContains('<blob-value encoding="base64" type="binary" nil="true"></blob-value>', $xml);
 }