예제 #1
0
파일: Story.cs 프로젝트: BenHall/xUnit.GWT
 private TestPart GetTestPart(List<TestPart> list, string message)
 {
     TestPart keyValuePair = list.Find(r => r.Message == message);
     if (keyValuePair == null)
         keyValuePair = new TestPart(message, null);
     return keyValuePair;
 }
예제 #2
0
파일: Story.cs 프로젝트: BenHall/xUnit.GWT
 public static void Then(string message, Action givenAction)
 {
     TestPart pair = new TestPart(message, givenAction);
     then.Add(pair);
     setupThen.Add(pair);
 }