コード例 #1
0
ファイル: VCardTest.php プロジェクト: evought/vcard-tools
 /**
  * @group default
  * @depends testFoldLine
  */
 public function testFoldOutput()
 {
     $inputStr = '';
     $foldedStr = '';
     foreach ($this->foldProvider() as $input) {
         $inputStr .= $input[0] . "\n";
         $foldedStr .= $input[1] . "\n";
     }
     $this->assertEquals($foldedStr, VCard::foldOutput($inputStr));
 }