How to run unit testing tests from command line?

后端 未结 4 595
走了就别回头了
走了就别回头了 2020-12-13 17:25

I googled and found the below helpful references. Currently I want to run all from the command-line (for easy of execution & quickness) in cases:

  1. A specifi
4条回答
  •  爱一瞬间的悲伤
    2020-12-13 17:51

    You might be interested by the Gallio bundle. It provides a free common automation platform to run your tests (MSTest, MbUnit, NUnit, xUnit, etc.) with various test runners (GUI, command line, PoSh, plugins for 3rd party tools, etc.)

    In particular you may want to use Gallio.Echo which is a nice command line test runner:

    Gallio.Echo

    The Gallio test runners have also filtering capabilities to run a subset of your unit tests only (e.g. per category, per fixture, etc.)

提交回复
热议问题