Ejemplo n.º 1
0
        public void Score_ListWithOneUrl_CreatesOneTwitterList()
        {
            var twitterLists = new List <string> {
                VerifiedListMedia
            };

            ListsScorer.Score(twitterLists);

            Assert.AreEqual(1, ListsScorer.TwitterLists.Count);
        }
Ejemplo n.º 2
0
 public void Score_EmptyList_ThrowsArgumentException()
 {
     ListsScorer.Score(new List <string>());
 }