public void op_ToString() { var story = new UserStoryAttribute { AsA = "tester", IWant = "to add an attribute", SoThat = "I can see the user story" }; const string expected = "As a tester, I want to add an attribute so that I can see the user story."; var actual = story.ToString(); Assert.Equal(expected, actual); }