コード例 #1
0
        public void Get_EmptyList_EmptyList()
        {
            var list = Repository.GetAll();

            Assert.AreEqual(0, list.Count());
        }
コード例 #2
0
ファイル: InsertTest.cs プロジェクト: marcepan/VeInteractive
        public void Insert_ValidDataEmptyList_OneElementOnList()
        {
            Repository.Insert(User);

            Assert.AreEqual(1, Repository.GetAll().Count());
        }