Add request testing for Bad SSL endpoints

This commit is contained in:
Ashita Prasad
2024-12-22 02:13:47 +05:30
parent f500a4b209
commit 301aa82731
3 changed files with 67 additions and 7 deletions

View File

@@ -188,3 +188,15 @@ Map<String, dynamic> requestModelJson = {
'message': null,
'httpResponseModel': responseModelJson,
};
/// Basic GET request model for apidash.dev
const requestModelGet13 = RequestModel(
id: 'get13',
httpRequestModel: httpRequestModelGet13,
);
/// Basic GET request model for badSSL
const requestModelGetBadSSL = RequestModel(
id: 'badSSL',
httpRequestModel: httpRequestModelGetBadSSL,
);