Created
December 11, 2017 11:31
-
-
Save matthewerskine/63595ad08735b7e46b890ca0ac6ffc7f to your computer and use it in GitHub Desktop.
Test all container bindings can resolve
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class PlumbingTest extends TestCase | |
| { | |
| public function test_the_plumbing() | |
| { | |
| foreach (app()->getBindings() as $key => $binding) { | |
| app($key); | |
| } | |
| $this->assertTrue(true); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment