Can nunit-console list all test names in a test fixture?

前端 未结 2 1867
情话喂你
情话喂你 2021-01-19 01:41

I\'d like to report them before they\'re run, and have the option to run individual tests through shell scripts without managing categories. We have some unmanaged code whic

2条回答
  •  悲&欢浪女
    2021-01-19 02:04

    There is now the --explore command-line option that can be used to list all test cases without running tests. More specifically

    nunit3-console.exe MyProject.dll --explore
    

    For more info: https://github.com/nunit/docs/wiki/Console-Command-Line#description

提交回复
热议问题