private void TestStoreWithSuffixSuccess()
        {
            DynamoDbMetastoreImpl dbMetastoreImpl = NewBuilder(Region)
                                                    .WithEndPointConfiguration("http://localhost:" + DynamoDbPort, Region)
                                                    .WithKeySuffix()
                                                    .Build();
            bool actualValue = dbMetastoreImpl.Store(TestKey, DateTimeOffset.Now, JObject.FromObject(keyRecord));

            Assert.True(actualValue);
        }
Esempio n. 2
0
        private void TestStore()
        {
            bool actualValue = dynamoDbMetastoreImpl.Store(TestKey, DateTimeOffset.Now, JObject.FromObject(keyRecord));

            Assert.True(actualValue);
        }