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