public void ThrowsExceptionWhenScopeDataDictionaryIsNull() { var args = new BeginScopeArgs("", new Logger(), null); }
public void DoesNotThrowExceptionWhenStateIsNull() { var args = new BeginScopeArgs(null, new Logger(), new Dictionary <string, object>()); }
public void ThrowsExceptionWhenLoggerIsNull() { var args = new BeginScopeArgs("", null, new Dictionary <string, object>()); }