olx_test_runner 0.10.2
olx_test_runner: ^0.10.2 copied to clipboard
CLI tool to help running Flutter tests.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add olx_test_runner
With Flutter:
$ flutter pub add olx_test_runner
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
olx_test_runner: ^0.10.2
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:olx_test_runner/command_runner/command_runner.dart';
import 'package:olx_test_runner/command_runner/test_group_generator_command.dart';
import 'package:olx_test_runner/command_runner/test_runner_command.dart';
import 'package:olx_test_runner/command_runner/validate_test_command.dart';
import 'package:olx_test_runner/test_group_generator/test_group_generator.dart';
import 'package:olx_test_runner/test_runner/error_event.dart';
import 'package:olx_test_runner/test_runner/event.dart';
import 'package:olx_test_runner/test_runner/event_type.dart';
import 'package:olx_test_runner/test_runner/group_event.dart';
import 'package:olx_test_runner/test_runner/test_event.dart';
import 'package:olx_test_runner/test_runner/test_progress.dart';
import 'package:olx_test_runner/test_runner/test_result.dart';
import 'package:olx_test_runner/test_runner/test_runner.dart';
import 'package:olx_test_runner/test_validator/test_validator.dart';
import 'package:olx_test_runner/test_validator/validation_result.dart';
import 'package:olx_test_runner/test_validator/validation_summary.dart';
import 'package:olx_test_runner/utils/cli_logger.dart';
import 'package:olx_test_runner/utils/exit.dart';
import 'package:olx_test_runner/utils/input_utils.dart';