Lines Matching full:tc
45 @pytest.mark.parametrize("tc", TEST_CASES)
48 def test_xsdbbinaryrunner_init(check_call, path_exists, tc, runner_config): argument
54 config=tc["config"],
55 bitstream=tc["bitstream"],
56 fsbl=tc["fsbl"],
61 assert check_call.call_args_list == [call(tc["expected_cmd"])]
64 @pytest.mark.parametrize("tc", TEST_CASES)
67 def test_xsdbbinaryrunner_create(check_call, path_exists, tc, runner_config): argument
70 if tc["config"]:
71 args.extend(["--config", tc["config"]])
72 if tc["bitstream"]:
73 args.extend(["--bitstream", tc["bitstream"]])
74 if tc["fsbl"]:
75 args.extend(["--fsbl", tc["fsbl"]])
87 assert check_call.call_args_list == [call(tc["expected_cmd"])]