80 hours later . . . (2008-9-27)
[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);
}
[...]

