Пример #1
0
        public async void PostToFacebookApiAsyncShouldThrowExceptionWithNullContent()
        {
            var facebookClientWrapper = new FacebookClientWrapper(_testOptions);

            await Assert.ThrowsAsync <ArgumentNullException>(async() => { await facebookClientWrapper.PostToFacebookApiAsync("fakePostType", null, default); });
        }