in testing/qiskit_helpers.py [0:0]
def get_qumat_backend_config(test_type: str = "get_final_state_vector"):
if test_type == "get_final_state_vector":
print("success")
qumat_backend_config = {
'backend_name': 'qiskit',
'backend_options': {
'simulator_type': 'statevector_simulator',
'shots': 1
}
}
else:
pass
return qumat_backend_config