@ExpectSelect - jeanbisutti/quick-perf-doc-1.1 GitHub Wiki

Verifies the number of SELECT statements.

See also the ExpectMaxSelect annotation.

:wrench: Elements

Name Type Meaning Default value
value int Number of select statements 1

:mag_right: Example

    @ExpectSelect(1)
    @Test
    public void should_retrieve_all_cars() {	
     //...
    }