示例#1
0
        public void testExpectedInput()
        {
            XmlNode testNode          = getNode("<think>This is a test</think>");
            var     mockBotTagHandler = new AIMLbot.AIMLTagHandlers.think(this.mockBot, this.mockUser, this.mockQuery, mockRequest, mockResult, testNode);

            Assert.Equal("", mockBotTagHandler.Transform());
        }
示例#2
0
 public void testExpectedInput()
 {
     XmlNode testNode = StaticHelpers.getNode("<think>This is a test</think>");
     this.mockBotTagHandler = new AIMLbot.AIMLTagHandlers.think(this.mockBot, this.mockUser, this.mockQuery, this.mockRequest, this.mockResult, testNode);
     Assert.AreEqual("", this.mockBotTagHandler.Transform());
 }