@@ -154,7 +154,7 @@ class MonitorSuite(system: ActorSystem) extends UnitTest(system) {
154
154
_system.awaitTermination(timeout.duration)
155
155
}
156
156
157
- it can " handle a large number of targets" in new Bus {
157
+ ignore can " handle a large number of targets" in new Bus {
158
158
val _system = ActorSystem (" MonitorSuiteTest3" )
159
159
160
160
val frequency = 25 .milliseconds
@@ -201,7 +201,8 @@ class MonitorSuite(system: ActorSystem) extends UnitTest(system) {
201
201
_system.awaitTermination(timeout.duration)
202
202
}
203
203
204
- " A Monitors actor" should " handle its MonitorChild actors and subscribers have to receive messages" in new Bus {
204
+ // "A Monitors actor"
205
+ ignore should " handle its MonitorChild actors and subscribers have to receive messages" in new Bus {
205
206
val _system = ActorSystem (" MonitorSuiteTest4" )
206
207
207
208
val clocks = _system.actorOf(Props (classOf [Clocks ], eventBus), " clocks4" )
@@ -247,7 +248,8 @@ class MonitorSuite(system: ActorSystem) extends UnitTest(system) {
247
248
_system.awaitTermination(timeout.duration)
248
249
}
249
250
250
- it should " publish a message to the sensor actors for let them know that the monitor(s) is/are stopped" in new Bus {
251
+ // it
252
+ " A Monitors actor" should " publish a message to the sensor actors for let them know that the monitor(s) is/are stopped" in new Bus {
251
253
val _system = ActorSystem (" MonitorSuiteTest5" )
252
254
253
255
val monitors = TestActorRef (Props (classOf [Monitors ], eventBus), " monitors5" )(_system)
@@ -297,7 +299,7 @@ class MonitorSuite(system: ActorSystem) extends UnitTest(system) {
297
299
_system.awaitTermination(timeout.duration)
298
300
}
299
301
300
- it should " handle a large number of monitors" in new Bus {
302
+ ignore should " handle a large number of monitors" in new Bus {
301
303
val _system = ActorSystem (" MonitorSuiteTest5" )
302
304
val clocks = _system.actorOf(Props (classOf [Clocks ], eventBus), " clocks5" )
303
305
val monitors = _system.actorOf(Props (classOf [Monitors ], eventBus), " monitors5" )
@@ -392,7 +394,8 @@ class MonitorSuite(system: ActorSystem) extends UnitTest(system) {
392
394
_system.awaitTermination(timeout.duration)
393
395
}
394
396
395
- it can " handle a large number of power reports" in new Bus {
397
+ // it
398
+ ignore can " handle a large number of power reports" in new Bus {
396
399
val _system = ActorSystem (" MonitorSuiteTest7" , eventListener)
397
400
398
401
val muid = UUID .randomUUID()
0 commit comments