/**
  * @covers ::againstTraversable
  * @covers ::matchArray
  * @covers ::matchLine
  * @dataProvider provideArraysToMatch
  */
 public function testCanStaticallyMatchArrays($data, $searchString, $expectedResult)
 {
     // ----------------------------------------------------------------
     // setup your test
     // ----------------------------------------------------------------
     // perform the change
     $actualResult = FilterForMatchingString::againstTraversable($data, $searchString);
     // ----------------------------------------------------------------
     // test the results
     $this->assertEquals($expectedResult, $actualResult);
 }