LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : import '../model/location.dart'; 2 : import '../model/stay_point.dart'; 3 : import '../model/threshold.dart'; 4 : 5 : abstract class OnlineRepository { 6 : StayPoint process({Threshold threshold, Location location}); 7 : } 8 : 9 : class OnlineIdentification implements OnlineRepository { 10 : @override 11 : StayPoint process({Threshold threshold, Location location}) { 12 1 : throw new UnimplementedError("Not yet implemented"); 13 : } 14 : } |
![]() |
Generated by: LCOV version 1.13 |