OpenTween.PostClassTest.DeleteTest C# (CSharp) Method

DeleteTest() private method

private DeleteTest ( ) : void
return void
        public void DeleteTest()
        {
            var post = new TestPostClass
            {
                InReplyToStatusId = 10L,
                InReplyToUser = "hogehoge",
                InReplyToUserId = 100L,
                IsReply = true,
                ReplyToList = new List<string> {"hogehoge"},
            };

            post.IsDeleted = true;

            Assert.That(post.InReplyToStatusId, Is.EqualTo(0L));
            Assert.That(post.InReplyToUser, Is.EqualTo(""));
            Assert.That(post.InReplyToUserId, Is.EqualTo(0L));
            Assert.That(post.IsReply, Is.False);
            Assert.That(post.ReplyToList, Is.Empty);
            Assert.That(post.StateIndex, Is.EqualTo(-1));
        }