@@ -81,13 +81,15 @@ def setUp(self):
81
81
self .map = rtb .LandmarkMap (20 )
82
82
self .rs = RangeBearingSensor (self .veh , self .map )
83
83
84
+ @unittest .skip ("mobile under construction" )
84
85
def test_init (self ):
85
86
86
87
self .assertIsInstance (self .rs .map , rtb .LandmarkMap )
87
88
# self.assertIsInstance(self.rs.robot, rtb.Vehicle)
88
89
89
90
self .assertIsInstance (str (self .rs ), str )
90
91
92
+ @unittest .skip ("mobile under construction" )
91
93
def test_reading (self ):
92
94
93
95
z , lm_id = self .rs .reading ()
@@ -108,6 +110,7 @@ def test_reading(self):
108
110
self .assertIsInstance (z , np .ndarray )
109
111
self .assertEqual (z .shape , (2 ,))
110
112
113
+ @unittest .skip ("mobile under construction" )
111
114
def test_h (self ):
112
115
xv = np .r_ [2 , 3 , 0.5 ]
113
116
p = np .r_ [3 , 4 ]
@@ -215,6 +218,7 @@ def test_plot(self):
215
218
216
219
217
220
class LandMarkTest (unittest .TestCase ):
221
+ @unittest .skip ("mobile under construction" )
218
222
def test_init (self ):
219
223
220
224
map = LandmarkMap (20 )
@@ -231,6 +235,7 @@ def test_init(self):
231
235
self .assertEqual (map .y .shape , (20 ,))
232
236
self .assertEqual (map .xy .shape , (2 , 20 ))
233
237
238
+ @unittest .skip ("mobile under construction" )
234
239
def test_range (self ):
235
240
map = LandmarkMap (1000 , workspace = [- 10 , 10 , 100 , 200 ])
236
241
0 commit comments