Example #1
0
        public void When_retrieving_non_existing_conversation_context_then_return_new_one(string chatKey)
        {
            ConversationContext conversationContext = this._contexts[new Guid(chatKey)];

            conversationContext.SuggestedDocuments.Add(GetDocument());

            conversationContext.Should().NotBeNull();
            conversationContext.ChatKey.Should().Be(chatKey);
        }