Basit Bir Test Framework Geliştirelim 7
2023-05-11 | #diy-unittest-framework #do-it-yourself #net #reflection #unit-test
Bu sefer Assert sınıfına IsEmpty ve IsNotEmpty işlevlerini ekleyelim. Bu işlevler sayesinde, bir koleksiyonun boş olup olmadığını kontrol edebiliriz. using System; using System.Collections.Generic; using System.Linq; using System.Threading; // ... önceki exception sınıfları ... public class AssertIsEmptyFailedException : AssertFailedException { public AssertIsEmptyFailedException() : base("Expected collection to be empty, but it was not.") { } } public class AssertIsNotEmptyFailedException : AssertFailedException { public AssertIsNotEmptyFailedException() : base("Expected collection to not be empty, but it was.