About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (20)
- Development (208)
- Security (17)
- Test (32)
- Tooling (166)
- Uncategorized (167)
Most used tags
Tag Archives: stub
System.DateTime isolation
After System.Random Isolation I now want to isolate System.DateTime. The information in the struct is not very interesting, but the Now property is. That is a static property. Does that require a different approach? Hardly. IDateTime First I’ll define the … Continue reading
Posted in Test
Tagged datetime, design pattern, isolation, Rhino mocks, static, stub, unittest, wrapper
Leave a comment
System.Random isolation
Writing a unit test is all about isolating the code under test. The best way to do this is by using interfaces. An interface only described the methods and properties, but lets you change the implementation as long as you … Continue reading
Posted in Test
Tagged design pattern, isolation, random, Rhino mocks, stub, unittest, wrapper
6 Comments