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

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 Automock automock = Automock(
    port: 8080,
    swaggerJson: swagger,
  );
  await automock.start();
}
2
likes
130
pub points
6%
popularity

Publisher

verified publishermauriciotogneri.com

An automatic mock server to speed up your initial development.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

json_annotation, mockserver

More

Packages that depend on automock