Golf Tracker - Repository Unit Testing
If you haven't heard, unit testing is very important to successful application development.Unit testing I consider to be an art. Some people are experts at it, some are ignorant to it, and some like me, are just better than average at it.
Without going into too much detail about unit testing since this video doesn't cover what it is, I will say that the basic premise of unit testing is to create a test against your classes that have no dependency on anything physical such as a working database. Everything that you test against should be either mocked or faked. I demonstrate how to create some simple unit tests to make sure your application is working as it should.