Tagged Questions

AutoFixture is an open source framework for .NET designed to minimize the 'Arrange' phase of your unit tests. Its primary goal is to allow developers to focus on what is being tested rather than how to setup the test scenario, by making it easier to create object graphs containing test data.

learn more… | top users | synonyms

9
votes
2answers
742 views

What is AutoFixture AutoMoq?

I was looking at nuget and wanted to import moq when I noticed AutoFixture AutoMoq. I see that AutoFixture is to help write TDD faster but I can't find any examples of AutoMoq and how it is different ...
7
votes
1answer
411 views

AutoFixture refactoring

I started to use AutoFixture http://autofixture.codeplex.com/ as my unit tests was bloated with a lot of data setup. I was spending more time on seting up the data than to write my unit test. Here's ...
4
votes
1answer
206 views

Autofixture and Moq v4

I installed Autofixture and Moq using Nuget.So I have moq version 4. When running the following code var fixture = new Fixture().Customize(new AutoMoqCustomization()); ...
4
votes
1answer
145 views

How can I emit a .NET type with two properties that are overloaded only on return type?

I need to create a type that has two properties with the same name, and only differ on return type. Dynamically emitting this type via reflection is perfectly acceptable. Something like this: public ...
3
votes
2answers
81 views

Injecting Mocks on large dependency object graph

I have a a fairly significant dependency graph for an object I want to test. What is the easiest way to resolve my dependencies without having to register mocks everywhere? For example, I have a ...
3
votes
1answer
61 views

Use value of a parent property when creating a complex child in AutoFixture

I'm using AutoFixture to generate data for a structure involving a parent object and complex child objects, like this: public class Parent { public int Id { get; set; } public string Name { ...
3
votes
1answer
132 views

AutoFixture IEnumerable<T> behavior with CreatMany()

When looking at the post here, it looks like I should be able to create several objects using CreateMany(), iterate over them using foreach, and then return them as an array. What I'm seeing is that ...
3
votes
1answer
123 views

What are the differences between MOQ and AutoFixture?

I have a fair amount of experience using MOQ, while I've recently have stumbled into AutoFixture. What are the differences between these frameworks?
3
votes
1answer
117 views

How to create an IList of anonymous classes using AutoFixture

I previously posted a question on this link: Class with a nested collection - how do I populate the nested class? I need to be able to do the same but with nested classes: like so: public class ...
3
votes
1answer
153 views

Customizing AutoFixture builder with seeded property

I've got a customized autofixture builder for an integration test. Code is below. Question 1 - At present the first transaction has a TransactionViewKey.TransactionId of 1, etc. How do I set the ...
3
votes
1answer
282 views

IList<something> constructor parameter and AutoFixture

Using autofixture, I'm trying to construct anonymous instance of Project: _f=new Fixture().Customize(new AutoMoqCustomization()); _p=_f.CreateAnonymous<Project>(); This fails, cause Project ...
2
votes
1answer
45 views

Using Verify to confirm expected parameter values in Moq mock class

I'm trying to verify that a method within a mock is called with an expected object parameter. I'm using Moq, nUnit, and thinking that AutoFixture's Likeness should get the job done. Below is a ...
2
votes
2answers
130 views

How do I verify a method was called?

I have a ICreateService class that has dependency on ITicketApiAdapter. I've tried registering a mock ITicketAdaper so that it gets injected when I create an anonymous create service. So, in setup, I ...
2
votes
2answers
103 views

Reg. Unit Testing an Html Helper with AutoFixture

The original question is : Unit Testing an Html Helper with AutoFixture Not sure I should re-open the original question; however since I marked the original question as resolved I decided to create a ...
2
votes
1answer
99 views

Unit Testing an Html Helper with AutoFixture

I'm attempting to Unit Test an Html Helper using AutoFixture. Below is my SUT public static MvcHtmlString SampleTable(this HtmlHelper helper, SampleModel model, IDictionary<string, object> ...
2
votes
1answer
66 views

The purpose of creating anonymous types in AutoFixture for class under tests?

I recently started using AutoFixture library (http://autofixture.codeplex.com/) for Unit Testing and I quite like it. I got this code sample from the AutoFixture CodePlex website. My question is in ...
2
votes
1answer
85 views

Testdatageneration with AutoFixture: resolving ICollection<T> without mentioning every single T

I try to use AutoFixture 2 to generate testdata for EntityFramework4 classes that have ICollection member. public class Parent { public virtual ICollection<Child1> Children1 { ...
2
votes
1answer
38 views

How do I create a list of classes which always have a predefined value set in AutoFixture?

how do I create a collection of classes which always have a certain predefined value set in AutoFixture? Fixture.Register<IList<Child>>(() => ...
2
votes
1answer
122 views

AutoFixture 2 With() isn't working as it did in AutoFixture 1?

I'm porting my tests to AutoFixture 2.0, and I've run in to some strange behavior that I can neither explain nor fix. This simple test is failing for me: var autoFixtures = new Fixture(); var file = ...
2
votes
1answer
154 views

Fixture.CreateAnonymous method kills test runner process with an error (AutoFixture) when using AutoMoq to create a Controller

I'm trying to use the AutoMoqCustomization with AutoFixture to create an ASP.NET MVC2 Controller in a unit test via the Fixture.CreateAnonymous method. I've tried in both xUnit under TestDriven.NET, ...
2
votes
1answer
365 views

TDD System Under Test Creation Patterns (AutoFixture)

I'm trying to use SUT Factory 'pattern' to create my SUT. Given the SUT structure: namespace MySut { public class Dep1 { } public class Dep2 { } public class Sut { ...
1
vote
1answer
63 views

Why isn't AutoFixture working with the StringLength data annotation?

I'm trying again to upgrade to AutoFixture 2, and I'm running into a problem with the data annotations on my objects. Here's an example object: public class Bleh { [StringLength(255)] public ...
1
vote
1answer
73 views

How to add a fake EF4 Rerefence with AutoFixture ( or without if possible )

I have the following code: public class FakeOrderRepository:IOrderRepository { private static Fixture fixture = new Fixture(); private List<acc_ORDERS> dbmock = new ...
1
vote
1answer
53 views

Autofixture strange error

I'm getting this error. Ploeh.AutoFixture.Kernel.IllegalRequestException : A request for an IntPtr was detected. This is an unsafe resource that will crash the process if used, so the ...
1
vote
1answer
72 views

AutoFixture - how do I call a method, how to set a private setter of an autoproperty?

Here's my class: public MyClass { public int Id { get; private set; } public SetAssignableId (int id) { this.Id = id; } } I would like to have AutoFixture set the Id via SetAssignableId ...
1
vote
1answer
101 views

Class with a nested collection - how do I populate the nested class?

I'm a bit confused as to hydrate a class with a nested collection of another class. I get the error: AutoFixture was unable to create an instance from ...