Example #1
0
 /**
  * @iterations 1000
  */
 public function literal_tiny_string_match()
 {
     F::with(new Literal(F::tiny()))->matches(F::tiny());
 }
 /**
  * @iterations 100
  */
 public function clock_unserialize()
 {
     unserialize('O:7:"Literal":0:{}')->pattern = F::tiny();
 }
 /**
  * @iterations 100
  */
 public function clock_strtolower_and_strcmp()
 {
     $a = strtolower(F::medium('a'));
     $b = strtolower(F::medium('b'));
     strcmp($a, $b);
 }
 /**
  * @iterations 1000
  */
 public function strcasecmp_large_string_match()
 {
     F::with(strcasecmp(F::large('a'), F::large('a')));
 }