def test_h_gate_nondeterministic_minimal_basis_gates(self):
     """Test h-gate gate circuits compiling to u3,cx"""
     circuits = ref_1q_clifford.h_gate_circuits_nondeterministic(final_measure=False)
     targets = ref_1q_clifford.h_gate_statevector_nondeterministic()
     job = execute(circuits, StatevectorSimulator(), shots=1, basis_gates=['u3', 'cx'])
     result = job.result()
     self.is_completed(result)
     self.compare_statevector(result, circuits, targets)
 def test_h_gate_nondeterministic_default_basis_gates(self):
     """Test h-gate circuits compiling to backend default basis_gates."""
     circuits = ref_1q_clifford.h_gate_circuits_nondeterministic(final_measure=False)
     targets = ref_1q_clifford.h_gate_statevector_nondeterministic()
     job = execute(circuits, StatevectorSimulator(), shots=1)
     result = job.result()
     self.is_completed(result)
     self.compare_statevector(result, circuits, targets)