예제 #1
0
        public void PhotosCommentsGetRecentForContactsFullParamTest()
        {
            var photos = AuthInstance.PhotosCommentsGetRecentForContacts(DateTime.Now.AddHours(-1), PhotoSearchExtras.All, 1, 20);

            Assert.IsNotNull(photos, "PhotoCollection should not be null.");
            Assert.AreEqual(20, photos.PerPage);
        }
예제 #2
0
        public void PhotosCommentsGetRecentForContactsBasicTest()
        {
            var photos = AuthInstance.PhotosCommentsGetRecentForContacts();

            Assert.IsNotNull(photos, "PhotoCollection should not be null.");
        }