Lines Matching full:lines
8 lines = shell.exec_command('ztest shuffle -c 1 -s 1')
9 # Join the list of lines into a single string
10 output = '\n'.join(lines)
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}"
16 lines = shell.exec_command('ztest run-testcase ztest_params::test_dummy')
17 # Join the list of lines into a single string
18 output = '\n'.join(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')
23 # Join the list of lines into a single string
24 output = '\n'.join(lines)
29 lines = shell.exec_command('ztest run-testsuite ztest_params -r 2')
30 # Join the list of lines into a single string
31 output = '\n'.join(lines)
36 lines = shell.exec_command('ztest run-testsuite ztest_params')
37 # Join the list of lines into a single string
38 output = '\n'.join(lines)
39 …E ztest_params succeeded" in output, f"Expected 'TESTSUITE ztest_params succeeded' but got {lines}"
42 lines = shell.exec_command('ztest run-testcase ztest_params::test_int_param -p 44')
43 # Join the list of lines into a single string
44 output = '\n'.join(lines)
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'