public void CreateEntityShouldSucceed() { var testEntity = new TestTableEntity("john1", "smith") { Age = 21, Email = "*****@*****.**" }; tableStorage.CreateEntity(testEntity); var result = tableStorage.GetEntitiesByRowKey("john1").ToList(); Assert.True(result.Count > 0); }