...

/

Parametrized vs. Nonparametrized Tests

Parametrized vs. Nonparametrized Tests

Learn the difference between parametrized and nonparametrized tests in xUnit.

In this lesson, we’ll learn the difference between parametrized and nonparametrized tests. We’ll also learn the best practices for using either of these. We will do so with the help of the following playground:

namespace MainApp;

public class Calculator
{
    public int MultiplyByTwo(int value)
    {
        return value * 2;
    }
}
Parametrized test demonstration

In this playground, we use the ...