vote up 3 vote down star

We are doing some DDD at work and I am trying to find a good utility for generating Domain Objects with random data, or predefined data, and populating dependent objects.

Example Usage:

var user = DDDObjectFactory.CreateUser();
user.Name = "TestUser";

In our world, a user can not exist without a organization, so if there is no organization we need to create on of those too.

For a specific test, i may not care about any property other than the username, so that is the only one that I specify real data for, all others should have random data.

Any help would be greatly appreciated.

flag

43% accept rate

2 Answers

vote up 1 vote down

You can take a look at AutoFixture.

link|flag
vote up 1 vote down

Or NBuilder

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.