0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

C#の単体テストプロジェクトを使って、テストソースを書いて実行する形でテストする方法について

C#で単体テストを実行するまでの手順

①VisualStudioでWindowsFormプロジェクト等、処理を書きたいプロジェクトを作成する。
②テスト対象となるクラス、メソッド、処理を実装する(ここでは計算を行うCaluculatorクラス)
image.png

③プロジェクトを右クリック、追加→新しいプロジェクトを選択し
単体テストプロジェクトを作成する。
スクリーンショット 2024-12-09 222240.png

④作成したテストプロジェクト内にテストソースを書く。
ここでは第一引数と第二引数の値が同値であるかを検証するAreEqualメソッドを使用し、計算結果と期待値を比較

using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;

namespace CalculationTest
{
    [TestClass]
    public class UnitTest1
    {
        [TestMethod]
        public void TestMethod1()
        {
            var result = Calculation.Sum(4, 7);
            Assert.AreEqual(11, result);
        }
    }
}

⑤メニューからテスト→テストエクスプローラーを開きテストを実行
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?