How do you write automated tests for Dialogue System?
Posted: Fri Jun 14, 2019 10:37 pm
I'd like to write some automated tests for the Dialogue System and I'm wondering if it's possible. Ideally, I could write a test like this (pseudo code):
Is there a way to write tests like this? Are there any examples?
Code: Select all
Variable[areCropsReady] = false;
StartConversation("Field/Eva");
ContinueToNextResponse();
Assert.False(responses.contains("Your crops are ready!"));