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); }
private void TestStore() { bool actualValue = dynamoDbMetastoreImpl.Store(TestKey, DateTimeOffset.Now, JObject.FromObject(keyRecord)); Assert.True(actualValue); }