How can I call a controller action (route) myself when I have the path and the parameters in variables?
I found this in the documentation (http://www.playframework.com/documentation/2.1.x/JavaFunctionalTest):
import play.test.Helpers;
...
Result result = Helpers.routeAndCall(Helpers.fakeRequest(Helpers.GET, "/xx/Kiki"));
But the play.test package is not available in production mode. I'm using the latest play 2.1.2.
I have a Car how can I do Something?- biesior