In the class com.google.daq.mqtt.validator.validations.ConfigValidator, the tests broken_config and extra_config necessarily fail :
In the test setup (com.google.daq.mqtt.validator.SequenceValidator#setUp), the field min_loglevel of the device config is set to 400.
According to the documentation, this means that the device will not report log messages with a level greater than 400 (Level.WARNING).
The tests broken_config and extra_config necessarily fail, because they expect to receive log messages with a level of 200 (Level.INFO). This is less than 400, so the device will not send log messages with a level of 200 and the tests necessarily fail.
In the class
com.google.daq.mqtt.validator.validations.ConfigValidator, the tests broken_config and extra_config necessarily fail :In the test setup (
com.google.daq.mqtt.validator.SequenceValidator#setUp), the fieldmin_loglevelof the device config is set to 400.According to the documentation, this means that the device will not report log messages with a level greater than 400 (
Level.WARNING).The tests broken_config and extra_config necessarily fail, because they expect to receive log messages with a level of 200 (
Level.INFO). This is less than 400, so the device will not send log messages with a level of 200 and the tests necessarily fail.