Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个文件中编写了许多单元测试。问题是它们没有按顺序运行。我首先用一种方法在数据库中创建一个条目,然后在另一种方法中删除相同的条目。Insert() 在我的测试文件中出现在 Remove() 之前。但是 Remove() 仍然首先运行,因此我无法有效地执行测试用例,因为它找不到条目。原因可能是 Remove() 比 Insert() 花费更少的执行时间 我们可以设置测试用例的顺序吗?
您可以在测试名称前加上字母顺序的字符,例如 aTestSomething bTestAnotherThing
:)
更好的方法
如何使用 Visual Studio 对执行方法进行排序以进行集成测试?