Beispiel #1
0
 public function testCanAssertAStringEndsWith()
 {
     $this->assertTrue(Str::endsWith('foobar', 'bar'));
     $this->assertFalse(Str::endsWith('barfoo', 'bar'));
 }