OVMS3-idf/examples/system/freertos/real_time_stats/example_test.py
He Yin Ling c906e2afee test: update example and unit tests with new import roles:
tiny_test_fw is a python package now. import it using normal way.
2019-12-07 10:34:54 +08:00

20 lines
514 B
Python

from __future__ import print_function
import ttfw_idf
STATS_TASK_ITERS = 3
STATS_TASK_EXPECT = "Real time stats obtained"
@ttfw_idf.idf_example_test(env_tag='Example_WIFI')
def test_real_time_stats_example(env, extra_data):
dut = env.get_dut('real_time_stats', 'examples/system/freertos/real_time_stats', dut_class=ttfw_idf.ESP32DUT)
dut.start_app()
for iteration in range(0, STATS_TASK_ITERS):
dut.expect(STATS_TASK_EXPECT)
if __name__ == '__main__':
test_real_time_stats_example()