예제 #1
0
 public StreamLoader(
     IConverter converter,
     IEventStoreReadProxy proxy,
     IEventStoreConnection connection)
 {
     this.converter  = converter;
     this.proxy      = proxy;
     this.connection = connection;
 }
        public StreamLoaderTests()
        {
            converter  = A.Fake <IConverter>();
            proxy      = A.Fake <IEventStoreReadProxy>();
            connection = A.Fake <IEventStoreConnection>();

            sut = new StreamLoader(
                converter,
                proxy,
                connection);
        }