Closed all test classes (tearDown) and added some checks so it won't fail anymore.

This commit is contained in:
James Cole
2014-07-15 17:31:18 +02:00
parent 42496449fa
commit 1f4436cb75
6 changed files with 21 additions and 7 deletions

View File

@@ -193,5 +193,8 @@ class AllModelsTest extends TestCase
$this->assertCount(1, $component->user()->get());
$this->assertCount(1, $component->transactions()->get());
}
public function tearDown()
{
Mockery::close();
}
}