You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 1, 2018. It is now read-only.
1 Explain how a typical HTTP request is processed with framework (the request lifecycle).
- HTTP request is received by the framework
- the router component tries to find the most specific route able to accept this request. The corresponding action method is then invoked.
- application code is executed.
- if a complex vie needs to be generated, a template file is rendered.
- the result of the action method is then written as an HTTP response.
2 How could you test user interfaces with testing facilities in play!framework?
In the directionary provided by play! is a folder for test. You can copy all Junit Tests in there, extend these classes with extends UnitTest and run them on localhost:9000/@tests.