CreateConversationAsync() public method

Create a new conversation
public CreateConversationAsync ( string recipientUsername, string messageBody ) : Task>
recipientUsername string The username of the recipient
messageBody string The body of the message
return Task>
		public async Task TestCreateConversation()
		{
			var imgurClient = await AuthenticationHelpers.CreateOAuth2AuthenticatedImgurClient();
			var conversationEndpoint = new ConversationEndpoint(imgurClient);
			var conversation = await conversationEndpoint.CreateConversationAsync("xerax", "bitchin unit tests!");

			// Assert the Reponse
			Assert.IsNotNull(conversation.Data);
			Assert.AreEqual(conversation.Success, true);
			Assert.AreEqual(conversation.Status, HttpStatusCode.OK);
			Assert.AreEqual(conversation.Data, true);
		}
		public async Task TestDeleteConversation()
		{
			var imgurClient = await AuthenticationHelpers.CreateOAuth2AuthenticatedImgurClient();
			var conversationEndpoint = new ConversationEndpoint(imgurClient);
			await conversationEndpoint.CreateConversationAsync("xerax", "bitchin unit tests!");
			var conversations = await conversationEndpoint.GetConversationListAsync();
			if (conversations.Data.Length <= 0) return;
			var deletedConversation = await conversationEndpoint.DeleteConversationAsync(conversations.Data[0].Id);

			// Assert the Reponse
			Assert.IsNotNull(deletedConversation.Data);
			Assert.AreEqual(deletedConversation.Success, true);
			Assert.AreEqual(deletedConversation.Status, HttpStatusCode.OK);
			Assert.AreEqual(deletedConversation.Data, true);
		}