Code Inspection: NUnit. Parameters without provided values in test methodLast modified: 21 March 2024tipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.If you write parameterized NUnit tests, you must provide data values for each test parameter. There are different ways in which you can specify data values, which are described in the Parameterized Tests section of the NUnit documentation.Before[Test]// No values for parameter 'x'public void MyTest(int x){ // do something}After[Test]// Test will be executed with 'x = 10'public void MyTest([Values(10)] int x){ // do something}