Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ChatBot/testInputs.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (29 sloc)
1.15 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!--<!DOCTYPE root [ | |
<!ELEMENT root test> | |
<!ATTLIST test module CDATA #REQUIRED> | |
<!ATTLIST test input CDATA #REQUIRED> | |
]>--> | |
<!-- Usage explanation is in python script file! --> | |
<root> | |
<!-- testing different time input methods --> | |
<test module="Reminder" | |
input="Make me a message after 8 minutes and 5 seconds with text of hello"/> | |
<test module="Reminder" | |
input="Make me a message with text of hello after 8 minutes and 5 seconds"/> | |
<!-- oclock format --> | |
<test module="Reminder" | |
input="Remind me at 6oclock to make homework"/> | |
<test module="Reminder" | |
input="Set a reminder at 6 o'clock to make homework"/> | |
<!-- default time format --> | |
<test module="Reminder" | |
input="Make a note to call dad at 12:52"/> | |
<test module="Reminder" | |
input="Make a note at 12:52 to call dad"/> | |
<!-- AM PM time format --> | |
<test module="Reminder" | |
input="Send a notification at 11a.m with the message of go shoping"/> | |
<test module="Reminder" | |
input="Set me a reminder with a message of hello at 2:12PM"/> | |
</root> |