Skip to content
Permalink
5d0df9d2a7
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
31 lines (29 sloc) 1.15 KB
<?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>