EricSchaefer
EricSchaefer

Reputation: 26370

Is there a NuGet package for NUnit that includes the syntax helpers?

The regular NUnit package is pretty much stripped down...

Upvotes: 0

Views: 829

Answers (2)

Danny Tuppeny
Danny Tuppeny

Reputation: 42383

I just installed the NUnit NuGet package and it has 4MB of stuff in the packages folder - are you sure what you're looking for isn't included?

One of the things that annoyed me about NUnit's package was that so much was included - I only wanted the required DLLs to create test projects! :(

Upvotes: 0

Kiliman
Kiliman

Reputation: 20312

My understanding is that the NUnit Assert syntax helpers are in the NUnit.Framework assembly as of version 2.5. This assembly is included in the NUnit NuGet package.

Make sure you add using NUnit.Framework;

Anyway, if this isn't the answer you're looking for, perhaps you can clarify the question.

Hope this helps.

Upvotes: 2

Related Questions