Example #1
0
 /**
  * Testing unknown sort exceptions
  *
  * @expectedException \Solution10\Collection\Exception\Exception
  */
 public function testBadSortDirection()
 {
     $collection = new Collection(array('Apple', 'Orange', 'Banana'));
     $collection->sort(999);
 }