LCOV - code coverage report
Current view: top level - lib/domain/usecases/authentication - signout.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 AuthSignOut extends Usecase<void, NoParams> {
       8             :   final AuthenticationService service;
       9             : 
      10           0 :   const AuthSignOut(this.service);
      11             : 
      12           0 :   @override
      13             :   void call(NoParams noParams) {
      14           0 :     return service.signOut();
      15             :   }
      16             : }

Generated by: LCOV version 1.13