【Mac】コマンドラインからVSCode用にNUnit環境を作る【C#】
はじめに
公式のガイドを参考にMacでコマンドラインからVSCode用にNUnit環境を作ります。
やり方
まずはじめにアプリケーション用のフォルダを作り、slnファイルを作成します。
$ mkdir MyApp && cd $_
$ dotnet new sln
次に、テストしたいプロジェクトを作成します。
$ dotnet new console -o MyApp
そしたら、slnファイルに紐付けます。
$ dotnet sln add MyApp/MyApp.csproj
同様にしてNUnitプロジェクトを作成したら、テストしたいプロジェクトを参照に追加します。
$ dotnet new nunit -o MyAppTest
$ dotnet add MyAppTest/MyAppTest.csproj reference MyApp/MyApp.csproj
最後に、slnファイルにNUnitプロジェクトを追加します。
$ dotnet sln add MyAppTest/MyAppTest.csproj
念の為、テストを実行する。
$ dotnet test MyAppTest/MyAppTest.csproj
~
~
~
テスト実行を開始しています。お待ちください...
テストの実行に成功しました。
Total tests: 1
Passed: 1
テスト実行時間: 2.3876 秒
おつかれさまでした。
Author And Source
この問題について(【Mac】コマンドラインからVSCode用にNUnit環境を作る【C#】), 我々は、より多くの情報をここで見つけました https://qiita.com/ayase/items/afabf0d89f578a7a3f40著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .