예제 #1
0
 public function testImplode()
 {
     $t = new \Test\Strings();
     $pieces = array('a', 'b', 'c');
     $this->assertSame($t->testImplode(',', $pieces), 'a,b,c');
 }
예제 #2
0
 public function testImplode()
 {
     $t = new \Test\Strings();
     $pieces = array("a", "b", "c");
     assert($t->testImplode(",", $pieces) == "a,b,c");
 }