Exemplo n.º 1
0
        public void CreateFakeTest_NotImplemented()
        {
            var actual = ProxyUtility.CreateFake <Object1, ProxyBase <Object1> >();

            actual.Method1();
        }
Exemplo n.º 2
0
 public void CreateFakeTest()
 {
     var actual = ProxyUtility.CreateFake <IFormattable, FormatProxy>();
     var text   = actual.ToString("ABC: {0}", null);
 }