コード例 #1
0
        public BackgroundRequestLogStoreTests()
        {
            ct = cts.Token;

            options.StoreEnabled = true;

            sut = new BackgroundRequestLogStore(Options.Create(options), requestLogRepository, A.Fake <ISemanticLog>())
            {
                ForceWrite = true
            };
        }
コード例 #2
0
        public BackgroundRequestLogStoreTests()
        {
            ct = cts.Token;

            options.StoreEnabled = true;

            var log = A.Fake <ILogger <BackgroundRequestLogStore> >();

            sut = new BackgroundRequestLogStore(Options.Create(options), requestLogRepository, log)
            {
                ForceWrite = true
            };
        }
コード例 #3
0
        public BackgroundRequestLogStoreTests()
        {
            options.StoreEnabled = true;

            sut = new BackgroundRequestLogStore(Options.Create(options), requestLogRepository, A.Fake <ISemanticLog>());
        }
コード例 #4
0
 public BackgroundRequestLogStoreTests()
 {
     sut = new BackgroundRequestLogStore(requestLogRepository, A.Fake <ISemanticLog>());
 }