예제 #1
0
파일: TestSink.cs 프로젝트: bangush/Testing
 public void Write(WriteContext context)
 {
     if (WriteEnabled == null || WriteEnabled(context))
     {
         Writes.Add(context);
     }
 }
예제 #2
0
파일: TestSink.cs 프로젝트: bangush/Testing
 public static bool EnableWithTypeName <T>(WriteContext context)
 {
     return(context.LoggerName.Equals(typeof(T).FullName));
 }