예제 #1
0
파일: StrTest.php 프로젝트: lucidphp/common
 /** @test */
 public function itShouldTellIfStringEqulasString()
 {
     $a = 'string';
     $b = 'string';
     $this->assertTrue(Str::equals($a, $b));
     $a = 'string';
     $b = 'otherstring';
     $this->assertFalse(Str::equals($a, $b));
 }