Beispiel #1
0
        public void TweetRecordIsValidated()
        {
            AGFeed.LoadInputs loadInputs = new AGFeed.LoadInputs();
            String            tweetRec   = "Alan> Tweet validation";

            Assert.IsTrue(loadInputs.ValidatTweetRecord(tweetRec));
        }
Beispiel #2
0
        public void UserRecordIsValidated()
        {
            AGFeed.LoadInputs loadInputs = new AGFeed.LoadInputs();
            String            userRec    = "Ward follows Alan";

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