public function testCall()
 {
     $endPoint = new Point\ControllerPoint(['controller' => 'DemoController', 'action' => 'action']);
     $callable = $endPoint->getCall(['user', 358]);
     $response = $endPoint->call($callable, $endPoint->getArguments());
     self::assertEquals('action', $response);
 }