push
github
0 of 11 new or added lines in 1 file covered. (0.0%)
586 existing lines in 37 files now uncovered.144 of 1535 relevant lines covered (9.38%)
0.09 hits per line
UNCOV
1
|
class Coordinate(): |
× |
UNCOV
2
|
def __init__(self, latitude:float, longitude: float): |
× |
UNCOV
3
|
self.__latitude = latitude
|
× |
UNCOV
4
|
self.__longitude = longitude
|
× |
5 |
|
|
UNCOV
6
|
def get_latitude(self): |
× |
7 |
return self.__latitude |
× |
8 |
|
|
UNCOV
9
|
def get_longitude(self): |
× |
10 |
return self.__longitude |
× |