Posts by antao • 171 points
2 posts
-
0
votes2
answers328
viewsA: Which framework should I use for Functional Testing on . net?
For interface testing, I would also add Coded UI Tests from Visual Studio. Personally for unit tests I have used the NUNIT with the resharper and I am quite satisfied. I’ll give you a few more IOC…
-
5
votes2
answers24059
viewsA: View div in Hover
Something like the .show and .hide of jQuery solve this problem: JS: $("div.conteudo > img").hover(function() { $(this).next(".divDoLadoDireito").show(); //hover in }, function() {…