コード例 #1
0
ファイル: StringTest.php プロジェクト: wthielen/zf1e
 public function testTrimWideSpaceBoth()
 {
     $expected = "予期される 値";
     $this->assertEquals($expected, ZFE_Util_String::trim(" 予期される 値 "));
     $this->assertEquals($expected, ZFE_Util_String::trim("  予期される 値  "));
 }