2024-09-23 01:45:32 +00:00
|
|
|
import 'dart:async';
|
2024-09-25 04:04:57 +00:00
|
|
|
import 'package:platform_mocking/mocking.dart';
|
2024-09-23 01:45:32 +00:00
|
|
|
|
|
|
|
Future<void> main() async {
|
|
|
|
var rq =
|
|
|
|
MockHttpRequest('GET', Uri.parse('/foo'), persistentConnection: false);
|
|
|
|
await rq.close();
|
|
|
|
}
|