Get startedGet started for free

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.

This exercise is part of the course

Developing R Packages

View Course

Exercise instructions

  • 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.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Warning for feet to feet
___

# Error for cold feet
___
Edit and Run Code