Stories recently tagged with 'RoyOsherove'

Art of Unit Testing (Free Chapter 1, PDF)(manning-source.com)

submitted by jamesewelchjamesewelch(2275) 4 years, 8 months ago

The first chapter (unedited draft) covers the basics of unit testing. Chapter 1 includes definition, writing good unit tests, writing integration tests, and test-driven development topics with examples in C# using nUnit. read more...

2 comments |category: |Views: 22

tags: another

Answering xUnit.net Questions(agileprogrammer.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

Some Q & A on xUnit.net. Brad Wilson answers some of Roy Osherove's questions. read more...

1 comment |category: |Views: 12

tags: another

Mocks and Stubs - The difference is in the flow of information(weblogs.asp.net)

submitted by rpattersonrpatterson(745) 4 years, 8 months ago

Stubs and mocks may seem the same but the flow of information from each is very different. * Stubs provide input for the application under test so that the test can be performed on something else. * Mocks provide input to the test to decide on pass\fail. the opposite direction. read more...

add a comment |category: |Views: 11

tags: another

What Source Control tool do you use? And more on TFS Vs. Open Source(weblogs.asp.net)

submitted by crpietschmanncrpietschmann(11.3k) 5 years ago

Regarding my last post, Oren (Ayende) points out that regarding TFS's features, he can either find a match for them in open source land, or he doesn't really care about them. What bugs me is whether, assuming you can find and create such a solution out of a package of open source applications working together that operate with the same level of integration as TFS, can you still handle the things that matter to the organization using your solution: read more...

add a comment |category: |Views: 5

tags: another

Understanding the different generic collections in .NET(weblogs.asp.net)

submitted by back_endback_end(455) 5 years, 10 months ago

Learn when to use List<T>, BindingList<T> and Collection<T> read more...

1 comment |category: |Views: 31

tags: another

Introducing Regulazy: Point & Click Regular Expressions(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

Roy Osherove has released a new Regular Expression (alpha) tool: "Regulazy is an attempt to build a small "Expert System" for creating .NET Regular Expressions. It lets the user create an expression based on a real life example of text they would like to parse. As the user interacts with Regulazy using the mouse, Regulazy offers the user possible expressions that would fit the currently selected text. As the user selects "rules" to apply on various parts of the text, a regular expression is built automatically in the lower application pane. The end result is a visual expression builder, that for most simple parsing operations, requires the user only to know what they would like to parse, and what the parsing rules should be - Regex Syntax is *not* needed." read more...

1 comment |category: |Views: 46

tags: another