Lines Matching +full:2 +full:f
11 assert "PASS - test_int_param" in output, f"Expected 'PASS - test_int_param' but got {lines}"
12 assert "PASS - test_dummy" in output, f"Expected 'PASS - test_dummy' but got {lines}"
13 …assert "PASS - test_string_param" in output, f"Expected 'PASS - test_string_param' but got {lines}"
19 assert "PASS - test_dummy" in output, f"Expected 'PASS - test_dummy' but got {lines}"
22 lines = shell.exec_command('ztest run-testcase ztest_params::test_dummy -r 2')
26 …assert pass_dummy_count == 2, f"Expected 2 occurrences of 'PASS - test_dummy' but found {pass_dumm…
29 lines = shell.exec_command('ztest run-testsuite ztest_params -r 2')
33 …assert pass_ztest_params_count == 2, f"Expected 2 occurrences of 'TESTSUITE ztest_params succeeded…
39 …assert "TESTSUITE ztest_params succeeded" in output, f"Expected 'TESTSUITE ztest_params succeeded'…
49 … lines = shell.exec_command(f'ztest run-testcase ztest_params::test_string_param -p {test_input}')
50 assert f'Passed string:{test_input}' in lines, 'expected response not found'