コード例 #1
0
 /**
  * Using format() directly to make sure it doesn't modify strings
  */
 public function testString()
 {
     $data = "Don't underestimate the power of the string [+*%&]";
     $formatted = $this->normalizer->format($data);
     $this->assertEquals("Don't underestimate the power of the string [+*%&]", $formatted);
 }