Line data Source code
1 : using System;
2 : using cdmdotnet.Logging;
3 : using Cqrs.Azure.BlobStorage;
4 : using Cqrs.Azure.BlobStorage.Events;
5 : using Cqrs.Events;
6 : using TestClass = NUnit.Framework.TestFixtureAttribute;
7 : using TestMethod = NUnit.Framework.TestAttribute;
8 : using TestInitialize = NUnit.Framework.SetUpAttribute;
9 : using TestCleanup = NUnit.Framework.TearDownAttribute;
10 : using TestContext = System.Object;
11 :
12 : namespace Cqrs.Azure.Storage.Test.Integration
13 : {
14 : /// <summary>
15 : /// A series of tests on the <see cref="TableStorageEventStore{TAuthenticationToken}"/> class
16 : /// </summary>
17 : [TestClass]
18 : public class TableStorageEventStoreTests : BlobStorage.Test.Integration.TableStorageEventStoreTests
19 1 : {
20 : #region Overrides of TableStorageDataStoreTests
21 :
22 0 : protected override TableStorageEventStore<Guid> CreateDataStore(IEventBuilder<Guid> eventBuilder, IEventDeserialiser<Guid> eventDeserialiser, ILogger logger, ITableStorageStoreConnectionStringFactory tableStorageEventStoreConnectionStringFactory)
23 : {
24 : return new Events.TableStorageEventStore<Guid>(eventBuilder, eventDeserialiser, logger, tableStorageEventStoreConnectionStringFactory);
25 : }
26 :
27 : #endregion
28 :
29 : }
30 : }
|