how does MSTest determine the order in which to run test methods?

前端 未结 4 471
-上瘾入骨i
-上瘾入骨i 2021-01-01 12:37

edit: note, question 288805 is similar, however, I specifically am asking how does MSTest choose the default test order. Please

4条回答
  •  感情败类
    2021-01-01 12:51

    The tests created in MSTest are ordered by execution time, in ascending order, after the tests that have not failed, for this reason the random execution. Unless the method names are in alphabetical order.

提交回复
热议问题