Browse by Tags
All Tags »
Agile (RSS)
If you use TFSBuilds with VS UnitTests, you know how to inspect the TestResults: you must download the whole directory to your local machine, and sometimes this folder could be pretty huge. So, if you want to check the error details of your tests, you
Read More...
Today's workshop was based on a demo to show all the vs features about testing, it covers: Unit Tests (With MockObjects) Integration Tests (Using ASP.Net Host) Functional Tests (With Web Tests) Load Tests (With testcontrollers and test agents) I've packed
Read More...
Tomorrow I will be talking about Testing with VS2005, here is my presentation: http://blogs.msdn.com/rido/attachment/1156243.ashx If you are interested in the code samples, please let me know and I will send you the latest version
Read More...
http://blogs.msdn.com/marcalt/archive/2006/07/02/654157.aspx A good thing to remember about CodeCoverage in VSTS... however I wonder how to evaluate this metric because "manual testing" is slow... I don't think you could reach more than 20% CC with manual
Read More...
Grady Booch (the legendary methodologist) talks in an interview about architectural patterns. I loved one sentence from this interview, when he answered the question: "What are the hallmarks of successful large software projects?", he said: "Here are
Read More...
Updated !! now this tool has it's own homepage at codeplex www.codeplex.com/trx2html ----------------------------------------------------------------- As I said in my previous post , I'm working on a tool to convert trx files (TestRun Results from VSTS)
Read More...
I have published aan Amazon list with my favorite agile books http://www.amazon.com/gp/richpub/listmania/fullview/1LHHR9AYGE60N/002-6823113-7530423 (comments are in spanish)
Read More...
I was waiting for the new version, it has been tested with .Net 2.0 RTM. http://sourceforge.net/project/showfiles.php?group_id=10749
Read More...
With the proximity of VS 2005 launch everybody is talking about IDEs. I know it's not a new discussion, IDE vs Editors, VS vs Notepad, Eclipse vs VIM ... Charles Petzold has written a piece http://charlespetzold.com/etc/DoesVisualStudioRotTheMind.html
Read More...
NUnit is the most popular unit tests framework for .Net. The new VSTS has a chance to replace NUnit in corporate environments, however there are some minor issues you must know before take a decission…
Read More...
One test is better that thousand words... [TestFixture] public class XmlDataDemo { [Test] public void LoadDataSet() { EmployeeDataSet ds = new EmployeeDataSet(); ds.ReadXml(@".\..\..\Employee.xml"); Assert.AreEqual(1,ds.employee.Rows.Count); } [Test]
Read More...
Honeslty, MSProject it's not my favorite tool to track software development projects (or at least the kind of projects where I use to work). I agree Mr Spolsky about his opinion of the product, and I prefer Excel, and Shared lists to track project information.
Read More...
Does everybody agree about the " Principles Of Object Oriented Design " ? from: http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfObjectOrientedDesign "… The first five principles are principles of class design. They are: SRP The Single Responsibility
Read More...
Finally my article about TDD, MockObjects and Dependency Injection is updated to this new URL: http://www.microsoft.com/spanish/msdn/articulos/archivo/200605/voices/MockObjectsAndTdd.mspx It's in Spanish, but the sample code is English readable !! I'm
Read More...
Michael Feathers has posted a set of Unit Tests Rules http://www.artima.com/weblogs/viewpost.jsp?thread=126923 he said: A test is not a unit test if: It talks to the database It communicates across the network It touches the file system It can't run at
Read More...