MSTest

There are 1 entries for the tag MSTest
MS Unit Test(s) e GenericParameterHelper

Oggi sono incappato in uno stranissimo comportamento che non mi spiegavo… stavo scrivendo degli unit test di una collection custom scroccando la classe GenericParameterHelper che è li apposta per quello… e ho scritto una cosa del tipo: [TestMethod] public void entityCollection_remove_a_reference_not_in_the_collection_should_return_false() {     var target = this.CreateMock<GenericParameterHelper>();     target.Add( new GenericParameterHelper() );     target.Add( new GenericParameterHelper() );     target.Add( new GenericParameterHelper() );     var actual = target.Remove( new GenericParameterHelper() );     actual.ShouldBeFalse();...

posted @ sabato 10 gennaio 2009 16:41 | Feedback (0)