2013-06-04 16 views

cevap

5

Aradığınız kişi:

Assert.IsType<TypeNotRegisteredException>(exception); 

Aradığınızı bu kadar yakınsa bana bildirin.

2

Assert.That eşdeğeri yerine InstanceOfType ifadesinin eşdeğerinin ne olduğunu sorduğunuzu düşünüyorum. İkincisi, İngilizce gibi önerilerinizi okumanızı sağlayan daha iyi bir sözdizimi.

xUnit içinde InstanceOfType assert eşdeğer IsType olup: nunit eşdeğer gerçekten, bu

Assert.IsType<TypeNotRegisteredException>(exception); 

Not:

Assert.IsInstanceOf<TypeNotRegisteredException>(exception); 

(eski IsInstanceOfType Assert kaldırıldı - http://www.nunit.org/index.php?p=typeAsserts&r=2.5.1)