public void ItComplainsWhenPassingInEmptyTableName() { // g const string tableName = ""; var fakeClient = FluentCyanTestsHelper.GetFakeCyanClient(); var client = new FluentCyan(fakeClient); // w Action act = () => client.FromTable(tableName); // t act.ShouldThrow<ArgumentNullException>(); }
public void Setup() { _client = new FluentCyan(FluentCyanTestsHelper.GetCyanClient()); }