1. ホーム
  2. c#

C#のユニットテストは、どのように大をテストするために

2023-08-19 01:55:47

質問

C# では、どのように greater than 条件をユニットテストすることができますか?

例えば、レコード数が5より大きい場合、テストは成功します。

どのようなヘルプでもかまいません。

コードです。

int actualcount = target.GetCompanyEmployees().Count
Assert. ?

どのように解決するのですか?

Assert.IsTrue(actualCount > 5, "The actualCount was not greater than five");