需要java运行环境支持。下载jar包:moco-runner-<version>-standalone.jar
下面是参考:
配置
Moco的配置文件格式使用的是json。例如:
请求响应配置
多文件配置
[
{
"request": {
"method": "post",
"uri": "/tenants/login",
"forms": {
"email": "[email protected]",
"password": "123"
}
},
"response": {
"json": {
"status": 0,
"uid": 1
}
}
},
{
"request": {
"method": "post",
"uri": "/tenants/login",
"forms": {
"email": "[email protected]",
"password": "1234"
}
},
"response": {
"json": {
"status": 1
}
}
},
{
"request": {
"method": "post",
"uri": "/tenants/logout",
"forms": {
"email": "[email protected]"
}
},
"response": {
"json": {
"status": 0
}
}
}
]