You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we tend to call assert with message like this:
Assert.notNull(fooBar, "FooBar must not be null");
Framework actually uses two different styles of message which mean slightly different things. A message "FooBar must not be null" refers to a type called FooBar. A message "'fooBar' must not be null" refers to the parameter or property name and is used when there is no useful explicit type.