public TestServiceProvider(TestKitOptions options)
        {
            if (options == null)
            {
                throw new ArgumentNullException(nameof(options));
            }

            _options  = options;
            _services = new Dictionary <Type, IMock <object> >();
        }
Exemplo n.º 2
0
 public TestGrainFactory(TestKitOptions options)
 {
     _options = options;
 }
Exemplo n.º 3
0
 internal TestGrainFactory(TestKitOptions options)
 {
     _options = options;
 }
Exemplo n.º 4
0
 internal TestGrainFactory(TestKitOptions options)
 {
     _options        = options;
     _probeFactories = new Dictionary <Type, Func <IGrainIdentity, IGrain> >();
     _probes         = new Dictionary <string, IGrain>();
 }