コード例 #1
0
ファイル: AGFeedUnitTests.cs プロジェクト: shakesSA/AGFeed
        public void TweetRecordIsValidated()
        {
            AGFeed.LoadInputs loadInputs = new AGFeed.LoadInputs();
            String            tweetRec   = "Alan> Tweet validation";

            Assert.IsTrue(loadInputs.ValidatTweetRecord(tweetRec));
        }
コード例 #2
0
ファイル: AGFeedUnitTests.cs プロジェクト: shakesSA/AGFeed
        public void UserRecordIsValidated()
        {
            AGFeed.LoadInputs loadInputs = new AGFeed.LoadInputs();
            String            userRec    = "Ward follows Alan";

            Assert.IsTrue(loadInputs.ValidatUserRecord(userRec));
        }