コード例 #1
0
ファイル: StrTest.php プロジェクト: caffeinated/beverage
 public function testCanRepeatString()
 {
     $string = Str::from('foo')->repeat(3)->obtain();
     $this->assertEquals('foofoofoo', $string);
 }