-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Application Architecture #2
Comments
Thank you for writing. This particular code base is one I've used for various presentations, so there's no document covering exactly this code base. However, this code base is an evolution of a simpler sample code base described in my MSDN Magazine article CQRS on Windows Azure. For a further evolution on the thoughts presented here, see also my Pluralsight course A Functional Architecture with F#. |
Hello Mark: I am in the process of rebuilding an application from the ground up, and am advocating using AutoFixture, xUnit and AutoFixture Idioms. I remembered that there were good idiom examples in this project, and so I cloned it, opened it in VS 2013 and upgraded a few packages. I was able to work out many things that failed as a par of the upgrades, but I'm not sure how to deal with one test in DateViewModelTests. You have one test: |
Well, I don't agree with the decision to remove You could always do something like this: [Fact]
public void SutHasDefaultConstructor()
{
new DateViewModel(); // Assert that it doesn't throw.
} |
Oh, I see, well that's simple enough, but not very descriptive; having Assert.DoesNotThrow, while possibly redundant, made it very clear what you were asserting. Thank you for your help. |
Yes, I agree with you, but I don't control xUnit.net. |
FWIW, I've now added a comment to xunit/xunit#188 |
Hi Mark.
I have been reading your blog a lot lately, I see a lot of interesting reasoning in your posts.
I have question about this project, there is any document explaining the overall architecture for this demo?
The text was updated successfully, but these errors were encountered: