Ejemplo n.º 1
0
 public function testStartWith()
 {
     // начинается со строки
     $needle = "Lorem ipsum dolor sit amet";
     $result = \Cloudstash\Helper\Str::StartWith($needle, $this->eng_lorem_ipsum);
     $this->assertTrue($result);
     // не начинается со строки
     $needle = "sed do eiusmod tempor incididunt";
     $result = \Cloudstash\Helper\Str::StartWith($needle, $this->eng_lorem_ipsum);
     $this->assertFalse($result);
 }