Faking All Static Methods of a Type

When to Use

You can fake static methods of a type when your test requires all static methods of the type to be faked.

Syntax
C#

Isolate.Fake.StaticMethods(typeof(Dependency));

VB

Isolate.Fake.StaticMethods(GetType(Dependency))