Skip to content

Instantly share code, notes, and snippets.

@matthewerskine
Created December 11, 2017 11:31
Show Gist options
  • Select an option

  • Save matthewerskine/63595ad08735b7e46b890ca0ac6ffc7f to your computer and use it in GitHub Desktop.

Select an option

Save matthewerskine/63595ad08735b7e46b890ca0ac6ffc7f to your computer and use it in GitHub Desktop.
Test all container bindings can resolve
<?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