DEV Community

Discussion on: Learn Test-Driven Development with Integration Tests in .NET 5.0

Collapse
 
n_develop profile image
Lars Richter

Hi @arjavdave ,
Thanks for your post. It's a nice introduction. But I think you should check the sample code. "Lesser than" and "Greater than" symbols (< & >) are encoded. So the code looks like this

class PatientTests : IClassFixture&lt;PatientTestsDbWAF&lt;Startup&gt;&gt;
Enter fullscreen mode Exit fullscreen mode

instead of this

class PatientTests : IClassFixture<PatientTestsDbWAF<Startup>>
Enter fullscreen mode Exit fullscreen mode

It would help with readability a lot.

Collapse
 
arjavdave profile image
Arjav Dave

Good catch. I have updated the code.