/**
  * @test
  */
 public function exchangeIndexNumericalByTextual()
 {
     $this->assertCount(0, HttpHelper::exchangeIndexNumericalByTextual(['a', 'b', 'c', 'd', 'e'], ['a', 'b', 'c', 'd', 'e']));
     $this->assertCount(1, HttpHelper::exchangeIndexNumericalByTextual([0 => ['a', 'b', 'c', 'd', 'e']], ['a', 'b', 'c', 'd', 'e']));
 }