Unit test Laravel middleware -
i trying write unit tests middleware in laravel. know tutorial, or have example of ? i have been writing lot of code, there must better way test handle method. using laravel 5.2, unit testing middleware passing request input , closure assertions. so have middleware class getcommandfromslack parses first word of text field in post (the text slack slash command) new field called command , modifies text field not have first word more. has 1 method following signature: public function handle(\illuminate\http\request $request, closure $next) . my test case looks this: use app\http\middleware\getcommandfromslack; use illuminate\http\request; class commandsfromslacktest extends testcase { public function testshouldknowliftcommand() { $request = new illuminate\http\request(); $request->replace([ 'text' => 'lift foo bar baz', ]); $mw = new \app\http\middleware\getcommandfromslack; $mw->handle($request,function($r)...