This poll is offered to subscribers of the UK MSDN Flash newsletter. If you’re not receiving the newsletter sign up here !
Unit testing is a software development methodology where the developer writes tests that validate a small portion of code. A unit test is usually composed of three ingredients: (1) data such as strings or integers, (2) a sequence of method calls that exercise the code under test and (3) assertions that verify the behaviour. int AddBroken( int x, int y) { if (x > 1000) x = 1000; // it’s too big! return x + y; } [TestMethod] public void AddOneTwo () { int z = AddBroken(1, 2); Assert.AreEqual(3,...
As mentioned in previous posts , I have a variety of ‘out of hours’ dev work that keeps me busy and proud. The latest piece of work was the migration of the educational film site Filmsforlearning.org to use Windows Azure blob storage. Filmsforlearning is run by a community of UK teachers that see the making of films as a key technique to provide a compelling learning experience. As Confucius said: Tell me and I will forget Show me and I will remember Involve me and I will understand The site did...
All titled: Windows Phone Application and Game Development http://live.visitmix.com/Sessions#/tags/WindowsPhone :-)