Is there a way to make a request on JMeter and receive a mocked JSON response that I create, for example:
[
{
"Car": "BMW",
"Model": "520D",
"Color": "Black"
},
{
"Car": "Audi",
"Model": "A3",
"Color": "Red"
},
{
"Car": "Ford",
"Model": "Focus",
"Color": "Blue"
}
]
I need a mocked up response that I can practice on using JMeter samplers etc.