[Concern(typeof(NothingButDotNetBootCamp))]
public class when_the_boot_camp_is_over :
InstanceContextSpecification<NothingButDotNetBootCamp>
{
INothingButDotNetParticipant bjoern;
public void establish_context()
{
bjoern = dependency<INothingButDotNetParticipant>();
}
public NothingButDotNetBootCamp create_sut()
{
return new NothingButDotNetBootCamp(bjoern);
}
[...]
Analysis of the “Nothing but .NET” application we build with JP using NDepend
Drill down on FrontController architecture
Doing BDD with mock frameworks
Rhino Mocks integration in the BDD extensions for xUnit
The Specification pattern in depth
Is the FrontController architecture also feasible in Smart Clients?
Build your own Container
Leveraging functional elements of C# 3.0 like (Currying, Function memoization, etc . [...]
We’re now half way through the course and I must say that it’s even a better experience than I originally expected. I’ve got to know a lot of very interesting, smart and also very kind people this week. The chemistry in the course is just amazing.
The course itself is radically different from any training I’ve [...]
Because of several requests I uploaded the little BDD extension I recently wrote for xunit. It’s basically a port of the framework JP Boodhoos currently uses in his famous Nothing but .Net bootcamps (he’s using MbUnit).
So here it is. Any feedback is appreciated . . .
Cool, Jetbrains just released a new version of it’s famous productivity enhancer. I’m going to update my development machine tomorrow. It’s just an awesome tool . . .
See http://blogs.jetbrains.com/dotnet/2008/09/resharper-41-is-released/ for more information.
Yesterday was an interesting evening. I tried to pinpoint the problem between the little BDD framework I used and the Resharper addin for xUnit.
A short description of my problem
I’m using a test-case-class-per-fixture organization and the template method pattern for writing tests in the AAA scheme. Besides that I use a specialized FactAttribute in order to [...]