Can someone point me out to a good source of information on Spring mvc testing? I would like to test:
Entities: I want to be able to create a new record in the database, fetch all records and assert on the new elements count.
@Controllers: I would like to be able to simulate a get, post or put to a specific path and get it reach the @Controller by simulating RequestBody
Services: I would like to be able to call autowired services from JUnit tests and perform operations on entities.
In other words, I come from Rails and am trying to understand Spring way of testing, preferrably without Mocking anything...