始める無料で始める

Fix expectation errors

Sometimes it becomes necessary to fix tests that may have been entered incorrectly to their correct forms. As you've looked over function definitions like that of temp_converter(), unit testing is also a handy technique to familiarize yourself with the inner workings of package functionality. In this exercise, you'll explore fixing tests, grouping them together, and also testing groups all at once.

You'll begin by reviewing errors in the first step, and then fix the errors in the second step.

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

この演習はコースの一部です

Developing R Packages

コースを見る

実践的なインタラクティブ演習

このサンプルコードを完成させて、この演習に挑戦してみましょう。

# Change each of the expectations below to have correct outputs
expect_equal(
  dist_converter(200, unit_from = "meters", unit_to = "feet"),
  60.96
)
expect_equal(
  dist_converter(656, unit_from = "feet", unit_to = "meters"),
  14
)
コードを編集して実行