コード例 #1
0
 /**
  * @author Andreas Glaser
  */
 public function testTrimMulti()
 {
     $this->assertEquals(' there, this is a test string', StringHelper::trimMulti($this->testString, ['Hello', '.']));
     $this->assertNotEquals(' there, this is a test string', StringHelper::trimMulti($this->testString, ['Hello', ',']));
 }