Example #1
0
 public DynamoDBStorageTestsFixture()
 {
     if (AWSTestConstants.IsDynamoDbAvailable)
     {
         DataManager = new UnitTestDynamoDBStorage();
     }
 }
 public DynamoDBStorageTestsFixture()
 {
     if (AWSTestConstants.IsDynamoDbAvailable)
     {
         DataManager = new UnitTestDynamoDBStorage();
     }
 }
Example #3
0
        public DynamoDBStorageTests(DynamoDBStorageTestsFixture fixture)
        {
            if (!AWSTestConstants.IsDynamoDbAvailable)
            {
                throw new SkipException("Unable to connect to AWS DynamoDB simulator");
            }

            manager      = fixture.DataManager;
            PartitionKey = "PK-DynamoDBDataManagerTests-" + Guid.NewGuid();
        }
 public DynamoDBStorageTestsFixture()
 {
     DataManager = new UnitTestDynamoDBStorage();
 }
 public DynamoDBStorageTestsFixture()
 {
     DataManager = new UnitTestDynamoDBStorage();
 }