public void ItComplainsWhenPassingInEmptyTableName()
        {
            // g
            const string tableName = "";
            var fakeClient = FluentAzureTestsHelper.GetTableClient();
            var client = new FluentAzure(fakeClient);

            // w
            Action act = () => client.FromTable(tableName);

            // t
            act.ShouldThrow<ArgumentNullException>();
        }
 public void Setup()
 {
     _client = new FluentAzure(FluentAzureTestsHelper.GetTableClient());
 }