From 650bc9be74931686896534c09663f8007dc41c7b Mon Sep 17 00:00:00 2001 From: akmalz Date: Sat, 3 Oct 2020 08:45:28 +0700 Subject: [PATCH] Update 2_Unit Testing Bots.md --- Labs/TestingHOLs/docs/2_Unit Testing Bots.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Labs/TestingHOLs/docs/2_Unit Testing Bots.md b/Labs/TestingHOLs/docs/2_Unit Testing Bots.md index a83d67d..165414f 100644 --- a/Labs/TestingHOLs/docs/2_Unit Testing Bots.md +++ b/Labs/TestingHOLs/docs/2_Unit Testing Bots.md @@ -20,7 +20,7 @@ Import the EchoBot Solution in VisualStudio from code\EchoBot. On successful imp ## 3. Echobot -In this lab, we will use EchoBot to develop unit tests. EchoBot is a very simple bot that echos back to the user with any message typed. For example, if the user types "Hello", EchoBot responds with the message "You sent: Hello". The core of EchoBot code that uses Dialogs can be found below. MessageReceivedAsync echos back to the user with "You said:� " +In this lab, we will use EchoBot to develop unit tests. EchoBot is a very simple bot that echos back to the user with any message typed. For example, if the user types "Hello", EchoBot responds with the message "You sent: Hello". The core of EchoBot code that uses Dialogs can be found below. MessageReceivedAsync echos back to the user with "You said:�" ````c# public class EchoDialog : IDialog @@ -67,4 +67,4 @@ A. Write another TestMethod called *EchoStartsWith* that verifies echo prompt B. Can you verify that the echoed messages were sent by a bot? -*Hint:* This would involve checking the properties of IMessageActivity response recieved. \ No newline at end of file +*Hint:* This would involve checking the properties of IMessageActivity response recieved.