Exemplo n.º 1
0
        public void SkillQueueWithNoEntriesIsEmpty()
        {
            var queue = new SkillQueue(List <SkillQueue.Entry>());

            Assert.True(queue.IsEmpty());
        }
Exemplo n.º 2
0
        public void SkillQueueWithEntriesIsNotEmpty()
        {
            var queue = new SkillQueue(List(new SkillQueue.Entry(1, "two", 3, 4, 5, DateTime.Now, DateTime.Now)));

            Assert.False(queue.IsEmpty());
        }