LCOV - code coverage report
Current view: top level - lib/domain/usecases/authentication - forgot_password.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 0 3 0.0 %
Date: 2020-06-26 11:36:11 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:app_pym/core/usecases/usecase.dart';
       2             : import 'package:app_pym/data/services/authentication_service.dart';
       3             : import 'package:injectable/injectable.dart';
       4             : 
       5             : @prod
       6             : @lazySingleton
       7             : class ForgotPassword extends Usecase<Future<void>, String> {
       8             :   final AuthenticationService service;
       9             : 
      10           0 :   const ForgotPassword(this.service);
      11             : 
      12           0 :   @override
      13             :   Future<void> call(String email) {
      14           0 :     return service.forgotPassword(email);
      15             :   }
      16             : }

Generated by: LCOV version 1.13