文件名称:xunit-performance:提供对xUnit的扩展以进行作者的性能测试
文件大小:154KB
文件格式:ZIP
更新时间:2024-06-14 12:07:10
C#
xunit.performance 由于该项目不再维护,该存储库已存档。 我们建议您使用来满足基准测试需求。 编写基准 创建一个新的类库项目 添加对最新的引用 添加对最新的引用(它部署合并* .etl文件所需的本机库) 使用[基准]而非[事实]标记测试方法 确保每个带[Benchmark]注释的测试都包含以下形式的循环: [ Benchmark ] void TestMethod () { // Any per-test-case setup can go here. foreach ( var iteration in Benchmark . Iterations ) { // Any per-iteration setup can go here. using ( iteration . StartMeasurement ()