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.
Cet exercice fait partie du cours
Developing R Packages
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.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Warning for feet to feet
___
# Error for cold feet
___