by Intertech Inc. | Feb 9, 2016 | Web Development
In part 1 of this Node.js tutorial we covered test tools and how to unit test your code in isolation. In this part, we will look at how to test your request routing, how to populate the database with test data, and how to set up basic end to end testing. The code for...
by Intertech Inc. | Jan 28, 2016 | Web Development
Testability is a major concern in software development. A piece of code whose functionality cannot be properly verified is hardly worth it’s storage space. Therefore, no matter what technology you’re using you will sooner or later (ideally sooner) face the...
by Rich Franzmeier | Jul 17, 2014 | .NET, C#, From The Field, Testing / QA
.NET has very nice entity validation in the System.ComponentModel.DataAnnotations namespace. I often use Required, RegularExpression and MaxLength attributes (among others). For the web developer, they work nicely on the client and the server without much work on...