Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • requirements may be identified by using either NUnit's categories or a property named "Requirement";
  • Tests may be identified by using either Nunit's categories or a property named "Test";
    • if categories contain multiple references to Test entities, only the first instance is considered;
    • if the "Test" property is used explicitly, then the Test must exist or else it will not be imported.
  • If the category references a requirement or a Test issue key, then the issue key should be represented with underscore instead of hyphen, e.g., "CALC_1" (due to the character limitation in NUnit).
  • The summary text will be trimmed to match the 255-character limit on the summary field.


Examples

Consider running some Tests implemented in the following C# class.

...