Skip to content

Commit add2b14

Browse files
committed
docs: Update docs
1 parent 436fe29 commit add2b14

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/site/docs/getting-started/create-test-project.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ dotnet new bunit --framework nunit -o <NAME OF TEST PROJECT>
6262
dotnet new bunit --framework mstest -o <NAME OF TEST PROJECT>
6363
```
6464

65+
# [TUnit](#tab/tunit)
66+
67+
```dotnetcli
68+
dotnet new bunit --framework tunit -o <NAME OF TEST PROJECT>
69+
```
70+
6571
***
6672

6773
The `--framework` option in the `dotnet new` command above is used to specify the unit testing framework used by the test project. If the `--framework` option is omitted, the default test framework `xunit` will be configured. Currently supported options are the following:
@@ -121,6 +127,12 @@ dotnet new nunit -o <NAME OF TEST PROJECT>
121127
dotnet new mstest -o <NAME OF TEST PROJECT>
122128
```
123129

130+
# [TUnit](#tab/tunit)
131+
132+
```dotnetcli
133+
dotnet new TUnit -o <NAME OF TEST PROJECT>
134+
```
135+
124136
***
125137

126138
The `-o` option in the `dotnet new` command above is used to specify the name of the test project.

0 commit comments

Comments
 (0)