File tree Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Expand file tree Collapse file tree 5 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ class AndroidTest extends Base
20
20
...Base::GENERAL_RESPONSES ,
21
21
...Base::LARGE_FILE_RESPONSES ,
22
22
...Base::EXCEPTION_RESPONSES ,
23
- ...Base::REALTIME_RESPONSES
23
+ ...Base::REALTIME_RESPONSES ,
24
+ ...Base::COOKIE_RESPONSES ,
24
25
];
25
26
}
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ abstract class Base extends TestCase
34
34
'POST:/v1/mock/tests/general/upload:passed ' ,
35
35
];
36
36
37
+ const COOKIE_RESPONSES = [
38
+ 'GET:/v1/mock/tests/general/set-cookie:passed ' ,
39
+ 'GET:/v1/mock/tests/general/get-cookie:passed ' ,
40
+ ];
41
+
37
42
const LARGE_FILE_RESPONSES = [
38
43
'POST:/v1/mock/tests/general/upload:passed ' ,
39
44
];
Original file line number Diff line number Diff line change @@ -20,5 +20,6 @@ class FlutterTest extends Base
20
20
...Base::LARGE_FILE_RESPONSES ,
21
21
...Base::EXCEPTION_RESPONSES ,
22
22
...Base::REALTIME_RESPONSES ,
23
+ ...Base::COOKIE_RESPONSES ,
23
24
];
24
25
}
Original file line number Diff line number Diff line change @@ -20,5 +20,6 @@ class SwiftClientTest extends Base
20
20
...Base::LARGE_FILE_RESPONSES ,
21
21
...Base::EXCEPTION_RESPONSES ,
22
22
...Base::REALTIME_RESPONSES ,
23
+ ...Base::COOKIE_RESPONSES ,
23
24
];
24
25
}
Original file line number Diff line number Diff line change @@ -25,5 +25,6 @@ class WebTest extends Base
25
25
...Base::LARGE_FILE_RESPONSES ,
26
26
...Base::EXCEPTION_RESPONSES ,
27
27
...Base::REALTIME_RESPONSES ,
28
+ ...Base::COOKIE_RESPONSES ,
28
29
];
29
30
}
You can’t perform that action at this time.
0 commit comments