How can I moq the following so it returns a new Guid();
private void CheckSomething(){
...
user = CustomerContext.Current.User; // returns Guid
CustomerContext is taken from a third party library and it is not injected into my class.
is there any way to do it?