Reputation: 2442
Ploeh.AutoFixture
and AutoFixture
?I have a project where I cannot use
using AutoFixture;
However, I have to use
using Ploeh.AutoFixture
What is the difference between these two and what would be pros and cons?
However, I also found another nuget package which enables me to add using AutoFixture;
only. What would be the best option?
I couldn't find the answer in stackoverflow. Any answer will enrich the community.
Thank you in advance.
Upvotes: 0
Views: 2105
Reputation: 174457
The one with Ploeh.AutoFixture
is an older version. The Ploeh
prefix was removed from the project about five months ago: https://github.com/AutoFixture/AutoFixture/commit/236e3d76d37fc615c693370f0385af39c1350394
Upvotes: 1