Skip to content

Latest commit

 

History

History
64 lines (45 loc) · 2.42 KB

TestAVarietyOfValues.md

File metadata and controls

64 lines (45 loc) · 2.42 KB

How to Test a Variety of Values for One Input

Contents

When to use Approvals::verifyAll()

When you want to test a lot of variations for a single input value.

If you have more than parameter that you want to vary, check out Testing Combinations.

Steps

  1. Copy this starter text.

TEST_CASE("VerifyAllStartingPoint")
{
    std::vector<std::string> inputs{"input.value1", "input.value2"};
    ApprovalTests::Approvals::verifyAll("TITLE", inputs, [](auto input, auto& stream) {
        stream << input << " => "
               << "placeholder";
    });
}

snippet source | anchor

  1. Modify the input container for your chosen values.
  2. Run it, and make sure that you have your inputs wired up correctly.

If they are wired up correctly, you will see a file that looks like this: it is the left hand side of the file that matters at this point: all combinations of your own input values should be listed:

TITLE


input.value1 => placeholder
input.value2 => placeholder

snippet source | anchor

  1. Replace the "placeholder" with a call to the functionality that you want to test.
  2. Change the TITLE to something meaningful
  3. Run it, and approve the output.

Further Advice

For advice on effective formatting, see Tips for Designing Strings. As you write out larger volumes of data in your approval files, experience has shown that the choice of layout of text in approval files can make a big difference to maintainability of tests, when failures occur.


Back to User Guide