_createAccount()
采用以下两个参数的方法
def _createAccount(self,username,emailID):
<statements to create account with respect to received emailID>
需要使用 unittest 测试此方法,即使用单个测试方法我想一次发送两个具有相同 emailID 和不同用户名的请求。这两个请求之一必须得到响应,就像已经使用此 emailID 创建的帐户一样。如何createAccount requests
与单元测试并行发送。