Code inspection: NUnit. Values for test method parameters are not provided.Last modified: 08 April 2024Category: NUnitID: NUnit.MethodWithParametersAndTestAttributeEditorConfig: resharper_n_unit_method_with_parameters_and_test_attribute_highlighting=[error|warning|suggestion|hint|none]Default severity: WarningLanguage: C#Requires SWA: NotipYou 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.Suboptimal code[Test]// No values for parameter 'x'public void MyTest(int x){ // do something}After the quick-fix[Test]// Test will be executed with 'x = 10'public void MyTest([Values(10)] int x){ // do something}