Alexandra K
Alexandra K

Reputation: 71

Where can I find free source code online to learn Unit testing on

I have started this course on Pluralsight about testing .Net application(desktop application, WinForms) with NUnit because I want to learn how to test code(I am a tester). The project I work on now has a huge application and the source code is too complicated for me right now. Where can I find the source code for a desktop application(open source I guess) so I can start learning how to unit test by referencing that code to my test project in Visual Studio. Thanks :)

Upvotes: 3

Views: 86

Answers (1)

Hayden Schiff
Hayden Schiff

Reputation: 3330

Here's a Microsoft-maintained list of open source .NET developer projects. Alternatively, they also have a list of consumer projects (which perhaps may be easier to sink your teeth into).

If none of those suit your fancy, GitHub has about a million .NET projects for you to explore.

Upvotes: 1

Related Questions