Last active
February 5, 2016 20:26
-
-
Save StevenTCramer/10564995870658973fb1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void CreateProject() | |
{ | |
var createProjectCommand = Resolve<Create.Command>(); | |
createProjectCommand.Description = "Description"; | |
Create.Result result = Send(createProjectCommand); | |
var project = Query(aDbContext => aDbContext.Projects.Find(result.ProjectId)); | |
project.Description.ShouldEqual(createProjectCommand.Description); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment