12 lines
301 B
Python
12 lines
301 B
Python
import pytest
|
|
from sut.backend.services.npc_chat_service import NpcChatService
|
|
|
|
def test_generate_reply_returns_string():
|
|
# Arrange
|
|
chat_service = NpcChatService()
|
|
message = "Hello!"
|
|
# Act
|
|
reply = chat_service.generate_reply(message)
|
|
# Assert
|
|
assert isinstance(reply, str)
|