calendar app enables the following high-level functions: ● Book meeting ● Book vacation time ● Check availability for room ● Check availability for person ● Print the agenda for room ● Printing the agenda for person 1.plan out a series of test cases to ensure that these features can be perform without error. b. Think about what the “testable units” are. i Your tests may use any of the classes in the system, and may be at the method, class, or system level. c. Make sure you think about both the normal execution and illegal inputs and actions that could be perform.i Think of as many things that could go wrong as you can! you add a normal meeting, but can you add a meeting for February 35th? Try it out. 2. Write tests jUnit framework. a. test is supposed to cause an exception to be thrown. b. Make sure your expected output is detailed enough to ensure that - if something is supposed to fail - that it fails for the correct reasons. 3. Turn in your test plan and unit tests.
Comments
Leave a comment