码迷,mamicode.com
首页 > Web开发 > 详细

.NET Core 单元测试

时间:2019-01-01 23:58:50      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:目标   .net core   ali   shell命令   eth   ssl   完整   csp   ram   

使用的PowerShell命令

1.创建项目相关命令

ls 

mkdir

ni (new-item) 创建空文件

add-content  向文件添加内容

type 打开文件

dotnet new sln 创建空解决方案

dotnet sln add *.csproj 向解决方案添加项目

dotnet new classlib 创建程序集

dotnet new mstest (创建MSTest项目)

dotnet add reference *.csproj (当前程序集添加其他程序及引用)

2.执行测试相关命令

dotnet test 执行所有

测试

dotnet test --filter Method (执行完整名字包含Method 的测试方法)

dotnet test --filter Name~TestMethod1 (运行名称中包含TestMethod1的方法)

dotnet test --filter ClassName=MSTestNamespace.UnitTest1 (运行MSTestNamespace.UnitTest1类中的测试)

dotnet test --filter FullyQualifiedName!=MSTestNamespace.UnitTest1.TestMethod1 (运行MSTestNamespace.UnitTest1.TestMethod1之外所有测试)

dotnet test --filter TestCategory=CategoryA (运行含 [TestCategory("CategoryA")] 批注的测试。)

dotnet test --filter Priority=2  (运行含 [Priority(2)] 批注的测试。)

dotnet vstest <MyPublishedTests>.dll 对发布过的测试项目运行测试 (如果你的应用以 netcoreapp 之外的框架为目标,则仍然可以通过使用框架标志传入目标框架来运行 dotnet vstest 命令。 如:dotnet vstest <MyPublishedTests>.dll --Framework:".NETFramework,Version=v4.6")

.NET Core 单元测试

标签:目标   .net core   ali   shell命令   eth   ssl   完整   csp   ram   

原文地址:https://www.cnblogs.com/fmys/p/10206411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!