Skip to content

Commit 6176f5d

Browse files
committed
Templates
1 parent b0bbc77 commit 6176f5d

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ TUnit is designed to aid with all testing types:
1616
[![nuget](https://img.shields.io/nuget/v/TUnit.svg)](https://www.nuget.org/packages/TUnit/) [![NuGet Downloads](https://img.shields.io/nuget/dt/TUnit)](https://www.nuget.org/packages/TUnit/)
1717
![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/thomhurst/TUnit/dotnet.yml) ![GitHub last commit (branch)](https://img.shields.io/github/last-commit/thomhurst/TUnit/main) ![License](https://img.shields.io/github/license/thomhurst/TUnit)
1818

19+
## Quick Start
20+
21+
Assuming you have the .NET SDK installed, simply run:
22+
23+
`dotnet new install TUnit.Templates`
24+
`dotnet new TUnit -n "YourProjectName"`
25+
26+
A new test project will be created for you with some samples of different test types and tips. When you're ready to get going, delete them and create your own!
27+
1928
## Documentation
2029

2130
See here: <https://thomhurst.github.io/TUnit/>

README_Template.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ TUnit is designed to aid with all testing types:
1616
[![nuget](https://img.shields.io/nuget/v/TUnit.svg)](https://www.nuget.org/packages/TUnit/) [![NuGet Downloads](https://img.shields.io/nuget/dt/TUnit)](https://www.nuget.org/packages/TUnit/)
1717
![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/thomhurst/TUnit/dotnet.yml) ![GitHub last commit (branch)](https://img.shields.io/github/last-commit/thomhurst/TUnit/main) ![License](https://img.shields.io/github/license/thomhurst/TUnit)
1818

19+
## Quick Start
20+
21+
Assuming you have the .NET SDK installed, simply run:
22+
23+
`dotnet new install TUnit.Templates`
24+
`dotnet new TUnit -n "YourProjectName"`
25+
26+
A new test project will be created for you with some samples of different test types and tips. When you're ready to get going, delete them and create your own!
27+
1928
## Documentation
2029

2130
See here: <https://thomhurst.github.io/TUnit/>

docs/docs/tutorial-basics/installing.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ sidebar_position: 1
99
Assuming you have the .NET SDK installed, simply run:
1010

1111
`dotnet new install TUnit.Templates`
12-
`dotnet new TUnit`
12+
`dotnet new TUnit -n "YourProjectName"`
13+
14+
A new test project will be created for you with some samples of different test types and tips. When you're ready to get going, delete them and create your own!
1315

1416
## Manually
1517

0 commit comments

Comments
 (0)