LCOV - code coverage report
Current view: top level - Users/yeradis/Projects/Garage/dart/stay_points.dart/lib/src/identification/model - coordinate.dart (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 3 3 100.0 %
Date: 2017-10-10 20:17:03 Functions: 0 0 -

          Line data    Source code
       1             : import 'dart:math';
       2             : 
       3             : class LocationDegrees {
       4             :     final double degrees;
       5             : 
       6           4 :     LocationDegrees({this.degrees});
       7             : 
       8           3 :     double get inRadians => this.degrees * (PI / 180.0);
       9             : }
      10             : 
      11             : abstract class Coordinate {
      12             :     final LocationDegrees latitude;
      13             :     final LocationDegrees longitude;
      14             : 
      15           4 :     Coordinate({this.latitude, this.longitude});
      16             : }

Generated by: LCOV version 1.13