Exemplo n.º 1
0
        public void UserDictionaryServiceTest_Get_count()
        {
            var expected = rep.GetUserDictionary(1).Words.Count();
            var actual   = service.Get(1).Words.Count();

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 2
0
 public UserDictionary GetUserDictionary()
 {
     return(serviceDictionary.Get(GetCurrentUserId()));
 }