public function testGeneratePlayoff()
 {
     $testGames = unserialize(file_get_contents('./fixtures/games.txt'));
     $testFranchises = unserialize(file_get_contents('./fixtures/franchises.txt'));
     $testStandings = new \IBL\Standings($testGames, $testFranchises);
     $testResults = $testStandings->generatePlayoff();
     $this->assertEquals(4, count($testResults), '4 components of playoff standings');
     $this->assertTrue(count($testResults) > 0, 'More than 1 result');
     $this->assertEquals(3, count($testResults['leaders']['AC']), '3 AC Leaders');
     $this->assertEquals(3, count($testResults['leaders']['NC']), '3 NC Leaders');
     $this->assertEquals(9, count($testResults['wildCardStandings']['AC']), '9 AC wild card teams');
     $this->assertEquals(9, count($testResults['wildCardStandings']['NC']), '9 NC wild card teams');
     $this->assertEquals(3, count($testResults['magicNumber']['AC']), '3 AC magic numbers');
     $this->assertEquals(3, count($testResults['magicNumber']['NC']), '3 NC magic numbers');
 }