Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 206 Bytes

unit-test-terminal.md

File metadata and controls

11 lines (6 loc) · 206 Bytes

#create xunit:

dotnet new xunit -o <name>

#add references to xunit

dotnet add test <foldername>/test*.csproj reference <projectfolder>/proj.csproj

#run tests

dotnet test <foldername>test*.csproj