1. Learn
  2. /
  3. Courses
  4. /
  5. Developing R Packages

Exercise

Check for warnings and errors

Another key part of test-driven package development is to ensure that errors and warnings are being outputted when we expect them to be. As someone that now has experience building and working with R functions, you understand that it is expected behavior for warnings and errors to appear if incorrect arguments were passed into the function. For example, the dist_converter() function in the unitConverter package is expected to produce a warning and also an error depending on the inputs to the function when it is called. We need to write expectations to ensure this behavior does occur when we expected it. Remember that expectations do not output anything if they were successful.

The testthat package and the unitConverter package at this point in development have been loaded for you.

Instructions

100 XP
  • Create an expectation showing that converting 25 feet to feet producing a warning.
  • Define an expectation showing that converting "cold" feet to meters produces an error.