# Controller Helpers This package contains a small list of controller-specific helper methods. Stored as a trait, include them, like so: ```php call('GET', '/'); $this->see('Hello World'); } ``` Optionally, you may specify an HTML container. For example, to search for *My Post* within an `h1` tag... ```php $this->see('My Post', 'h1'); ``` ### notSee Use `notSee`, `shouldNotSee`, or `assertNotSee` to perform the opposite, like so: ```php public function testFindHelloOnHomePage() { $this->call('GET', '/'); $this->see('Die Wil Wheaton'); $this->notSee('Die Sheldon'); } ```