예제 #1
0
 public void GivenICreateAStoryNamed(string storyName)
 {
     stories = new Stories(loginContext.gameId, loginContext.gameCode, client, loginContext.cookie);
     stories.CreateStory(storyName);
 }
        public void GivenJackCreatesAStory(string storyTitle)
        {
            var stories = new Stories(loginContext.gameId, loginContext.gameCode, client, loginContext.secondUserCookie);

            stories.CreateStory(storyTitle);
        }