public async void can_search_forms() { FormsClient forms = new FormsClient(ACCESS_KEY, SECRET_KEY, TenantName.ONEBLINK_TEST); FormsSearchResult response = await forms.Search(null, null, null); Assert.NotNull(response); }
public async void can_search_forms_with_all_params() { FormsClient forms = new FormsClient(ACCESS_KEY, SECRET_KEY, TenantName.ONEBLINK_TEST); FormsSearchResult response = await forms.Search(true, true, "Location test"); Assert.NotNull(response); }