1 00:00:06,872 --> 00:00:08,830 - But now we'd like you to try 2 00:00:08,830 --> 00:00:11,131 writing high-level acceptance tests. 3 00:00:11,131 --> 00:00:13,851 The groomers at the pet salon need to keep 4 00:00:13,851 --> 00:00:16,872 track of how long they spend grooming each pet. 5 00:00:16,872 --> 00:00:19,800 Now think about the persona of Gigi Groomer. 6 00:00:19,800 --> 00:00:21,192 What's the simplest way she could 7 00:00:21,192 --> 00:00:24,000 record arrival and departure times? 8 00:00:24,000 --> 00:00:26,670 Think about how she'll actually use the feature. 9 00:00:26,670 --> 00:00:29,270 If she's in a hurry, she might make a mistake. 10 00:00:29,270 --> 00:00:32,120 How can our application make things easy for her? 11 00:00:32,120 --> 00:00:34,491 We'd like you to start out by doing this 12 00:00:34,491 --> 00:00:37,461 in the Given/When/Then format, behavior driven 13 00:00:37,461 --> 00:00:39,520 development type style, with a 14 00:00:39,520 --> 00:00:42,760 precondition, an action, and an outcome. 15 00:00:42,760 --> 00:00:44,620 After you've done that, we'd like you 16 00:00:44,620 --> 00:00:47,580 to do the same test, but in a tabular format with 17 00:00:47,580 --> 00:00:51,580 some specific input values and expected results. 18 00:00:52,531 --> 00:00:54,199 When we come back, we'll give you 19 00:00:54,199 --> 00:00:56,782 some examples that we might do.