/**
  * @expectedException InvalidArgumentException
  */
 public function testSortingInvalidType()
 {
     $manager = new AssetManager($themeBag = $this->getMockThemeBag(), $viewFinder = m::mock('Cartalyst\\Themes\\Views\\ViewFinderInterface'), $locationGenerator = m::mock('Cartalyst\\Themes\\Locations\\GeneratorInterface'));
     $manager->getSorted('foo');
 }