Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 748 Bytes

SpringCollection.md

File metadata and controls

26 lines (20 loc) · 748 Bytes

☕️ SpringCollection

This annotation is to be used together with @SpringRequest for API(S) written using Spring.

Fields

name

This is the name of the collection, default is "Sample Collection".

createTest

This is a boolean value to enable creating tests for the requests or not, default is false;

baseUrl

This is the base url that should be used across the collection, default is "{{BASE_URL}}"

Example

This example shows a spring collection variables defined

@SpringCollection(
        name = "susan more collection", 
        createTest = true, 
        baseUrl = "https://example.com")
public class PathGenerator {
    
    ...
    
}