Методы для работы со статусом пользователя или сообщества.
Beispiel #1
0
 public void Get_AccessTokenInvalid_ThrowAccessTokenInvalidException()
 {
     var status = new StatusCategory(new VkApi());
     This.Action(() => status.Get(1)).Throws<AccessTokenInvalidException>();
 }
Beispiel #2
0
 public void Set_TextIsNull_ThrowArgumentNullException()
 {
     var status = new StatusCategory(new VkApi { AccessToken = "token" });
     This.Action(() => status.Set(null)).Throws<ArgumentNullException>();
 }
Beispiel #3
0
 public void Get_AccessTokenInvalid_ThrowAccessTokenInvalidException()
 {
     var status = new StatusCategory(new VkApi());
     status.Get(1);
 }
Beispiel #4
0
 public void Set_TextIsNull_ThrowArgumentNullException()
 {
     var status = new StatusCategory(new VkApi { AccessToken = "token" });
     status.Set(null);
 }
Beispiel #5
0
Datei: VkApi.cs Projekt: vknet/vk
        /// <summary>
        /// Инициализирует новый экземпляр класса <see cref="VkApi"/>.
        /// </summary>
        public VkApi(ICaptchaSolver captchaSolver = null)
        {
            Browser = new Browser();

            Users = new UsersCategory(this);
            Friends = new FriendsCategory(this);
            Status = new StatusCategory(this);
            Messages = new MessagesCategory(this);
            Groups = new GroupsCategory(this);
            Audio = new AudioCategory(this);
            Wall = new WallCategory(this);
            Board = new BoardCategory(this);
            Database = new DatabaseCategory(this);
            Utils = new UtilsCategory(this);
            Fave = new FaveCategory(this);
            Video = new VideoCategory(this);
            Account = new AccountCategory(this);
            Photo = new PhotoCategory(this);
            Docs = new DocsCategory(this);
            Likes = new LikesCategory(this);
            Pages = new PagesCategory(this);
            Gifts = new GiftsCategory(this);
            Apps = new AppsCategory(this);
            NewsFeed = new NewsFeedCategory(this);
            Stats = new StatsCategory(this);
            Auth = new AuthCategory(this);
            Markets = new MarketsCategory(this);
            Execute = new ExecuteCategory(this);

            RequestsPerSecond = 3;

            MaxCaptchaRecognitionCount = 5;
            _captchaSolver = captchaSolver;
        }
Beispiel #6
0
 public void Get_AccessTokenInvalid_ThrowAccessTokenInvalidException()
 {
     var status = new StatusCategory(new VkApi());
     Assert.That(() => status.Get(1), Throws.InstanceOf<AccessTokenInvalidException>());
 }