automock 1.0.2 copy "automock: ^1.0.2" to clipboard
automock: ^1.0.2 copied to clipboard

outdated

An automatic mock server to speed up your initial development.

example/main.dart

import 'dart:io';
import 'package:automock/automock.dart';

Future<dynamic> main() async {
  final File file = File('example/swagger.json');
  final String swagger = await file.readAsString();

  final MockServer mockServer = MockServer(8080, swagger);
  await mockServer.start();
}
2
likes
0
pub points
0%
popularity

Publisher

verified publishermauriciotogneri.com

An automatic mock server to speed up your initial development.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

json_annotation

More

Packages that depend on automock